@charset "UTF-8";
/*-----Helpers-----*/
.background-image {
  background-position: center;
  background-size: cover;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.unstyled {
  list-style-type: none;
  padding-left: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 1025px) {
  .hide-tablet-landscape-up {
    display: none !important;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----Fix Flash of Unstyled Text-----*/
.wf-loading {
  opacity: 0;
}

.wf-active {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  opacity: 1;
}

.wf-inactive {
  opacity: 1;
}

.alignnone {
  margin-bottom: 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

.sticky {
  display: block;
}

.gallery-caption {
  display: block;
}

.bypostauthor {
  display: block;
}

.accordion {
  padding-left: 0;
  list-style: none;
  border-top: 1px solid #e5e5e5;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

/* Thumb */
.accordion-thumb {
  margin: 0;
  padding: 0.8rem 0;
  cursor: pointer;
  font-weight: normal;
}

.accordion-thumb::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 7px;
  float: right;
  height: 7px;
  width: 7px;
  margin-right: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-right: 1px solid;
  border-bottom: 1px solid;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

/* Panel */
.accordion-panel {
  margin: 0;
  padding-bottom: 0.8rem;
  display: none;
}

/* Active */
.accordion-item.is-active .accordion-thumb::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.button,
button:not(.modal-close):not(.task-delete) {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  padding: 8px 15px 12px;
  -webkit-transition-duration: 0.2s;
  /* Safari */
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

#task-modal-body {
  padding: 30px 30px 20px;
  background: #eee;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
}

.modal-content {
  width: 400px;
  max-width: 400px;
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  background: #eee;
}
.modal-content h3 {
  margin-bottom: 10px;
}
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-content input, .modal-content textarea, .modal-content button:not(.modal-close) {
  border: none;
  display: block;
  font-family: "mundial", sans-serif;
  border-radius: 4px;
}
.modal-content input, .modal-content textarea {
  width: 100%;
  padding: 10px;
}
.modal-content button:not(.modal-close):not(.task-delete) {
  place-self: end;
  border-radius: 6px;
  padding: 8px 15px 12px;
  display: inline-block;
}

.create-modal button:not(.modal-close) {
  background: #111;
  color: #fff;
}

.edit-modal--stuck .modal-content {
  background: #E8DAB2;
}
.edit-modal--working-on .modal-content {
  background-color: #C0D6DF;
}
.edit-modal--complete .modal-content {
  background-color: #00A878;
}

.modal-close {
  position: absolute;
  top: -30px;
  right: -20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.delete-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.delete-modal-content {
  text-align: center;
  width: 300px;
  min-height: auto;
}

.delete-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.delete-modal-buttons button:hover {
  background: #000;
  color: #fff;
}

.delete-modal-buttons .confirm {
  background: #e53935;
  color: white;
}

.delete-modal-buttons .cancel {
  background: #ccc;
  color: #333;
}

/* Fade out effect */
.fade-out {
  animation: fadeOut 0.4s forwards;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----Forms-----*/
.form-section {
  background: #C0D6DF;
}
.form-section .site-container {
  padding: 0 20px;
  max-width: 400px;
}

.task-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.task-form__footer {
  display: flex;
  gap: 10px;
}
.task-form__footer button {
  width: calc(100% - 220px);
  cursor: pointer;
}
.task-form * {
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
.task-form input, .task-form textarea {
  display: block;
  width: 100%;
}
.task-form input::placeholder, .task-form input::-webkit-input-placeholder, .task-form textarea::placeholder, .task-form textarea::-webkit-input-placeholder {
  color: #999 !important;
}
.task-form input, .task-form textarea, .task-form button {
  padding: 8px 15px 12px !important;
  font-size: 15px !important;
  font-family: "mundial", sans-serif !important;
  background: #fff;
  border-radius: 6px;
}
.task-form button {
  background: #333;
  color: #fff;
  padding: 8px 15px 12px;
}
.task-form button:hover {
  background: #000;
}
.task-form .select-wrapper {
  max-width: 220px;
}
.task-form .select-wrapper select {
  color: #999;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 220px;
}
.select-wrapper select, .select-wrapper input, .select-wrapper textarea, .select-wrapper button {
  padding: 10px 15px !important;
  font-size: 15px !important;
  font-family: "mundial", sans-serif !important;
  background: #fff;
  border-radius: 6px;
}

/* Style the <select> itself */
.select-wrapper {
  /* Add a custom arrow with a pseudo-element */
}
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
}
.select-wrapper select {
  appearance: none; /* Remove default styling */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  width: 100%;
  padding: 7px 32px 9px 12px !important;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  background-color: white;
  cursor: pointer;
  display: block;
  height: 41px;
}

.task.editing {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.task.editing input:not([type=checkbox]), .task.editing textarea {
  display: block;
  width: 100%;
  padding: 5px !important;
  font-size: 15px !important;
  font-family: "mundial", sans-serif !important;
  background: #fff;
  border-radius: 6px;
  border: none;
}
.task.editing input:not([type=checkbox])::placeholder, .task.editing input:not([type=checkbox])::-webkit-input-placeholder, .task.editing textarea::placeholder, .task.editing textarea::-webkit-input-placeholder {
  color: #999 !important;
}
.task.editing button {
  cursor: pointer;
  border: none;
  background: transparent;
  place-self: end;
  font-family: "mundial", sans-serif !important;
}

button, input[type=submit], .button {
  font-family: "mundial", sans-serif !important;
}

.site-container {
  max-width: 1300px;
  margin: auto;
}
@media (max-width: 1260px) {
  .site-container {
    padding-inline: 20px;
  }
}
.site-container--medium {
  max-width: 1000px;
}
.site-container--narrow {
  max-width: 800px;
}

.site-section {
  padding: 75px 0;
}
.site-section.no-top-padding {
  padding-top: 0;
}
.site-section.no-bottom-padding {
  padding-bottom: 0;
}
.site-section.light-top-padding {
  padding-top: 40px;
}
.site-section.light-bottom-padding {
  padding-bottom: 40px;
}
.site-section.extra-top-padding {
  padding-top: 100px;
}
.site-section.extra-bottom-padding {
  padding-bottom: 100px;
}

.header {
  padding: 10px 30px;
  background-color: #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__shim {
  height: 70px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
}
.header__logo {
  max-height: 24px;
}
.header__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  height: 50px;
}
.header__controls .task-filter > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__controls .task-filter label {
  font-size: 15px;
}
.header__controls button.button {
  padding: 8px 15px 12px;
  border-radius: 6px;
  border: none;
  background: #333;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  /* Safari */
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.header__controls button.button:hover {
  background: #000;
}
.header__user-details {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  padding: 5px 0;
  background: #eee;
  margin-left: 15px;
  font-size: 14px;
}
.header__user-details:focus {
  background: #fff;
}
.header__user-details img {
  height: 40px;
  border-radius: 6px;
}
.header__user-avatar {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.header #user-menu {
  display: none;
  padding: 8px 20px 12px;
  position: absolute;
  background: #333;
  border-radius: 4px;
  bottom: -50px;
  right: 0;
  min-width: 95px;
}
.header #user-menu::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, -99%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #333;
}
.header #user-menu a {
  color: #fff;
  text-decoration: none;
}
.header #user-menu.is-open {
  display: block;
}
.header #site-link {
  display: flex;
  gap: 3px;
}
.header__title {
  transform: translateY(-2px);
  font-size: 24px;
  font-weight: 600;
  color: #40645E;
}
.header__title span {
  display: inline-block;
  font-size: 21.5px;
  transform: translateX(0.6px);
}

.logged-in .header__log-in {
  display: none;
}

.logged-out .header__log-out {
  display: none;
}

footer {
  padding: 30px;
}

.site-search {
  display: flex;
}
.site-search__field {
  line-height: 1;
  -webkit-appearance: none;
  padding: 5px 10px;
  border: 1px solid #ddd;
  height: 38px;
  border-radius: 0;
  width: calc(100% - 110px);
  font-size: 18px;
}
.site-search__result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 2px solid #eee;
  text-decoration: none !important;
  -webkit-transition-duration: 0.2s;
  /* Safari */
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.site-search__result h2 {
  font-size: 20px;
}
.site-search__result p {
  font-size: 15px;
}
.site-search__result * {
  text-decoration: none !important;
  margin: 0;
}
main {
  padding: 30px;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-group, .status-user {
  padding: 15px 10px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.status-user {
  display: flex;
  gap: 15px;
}
.status-user h3 {
  color: #333;
}
.status-user img {
  height: 80px;
  border-radius: 6px;
}
.status-user > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.status-user > div p {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
}

.status-list {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 20px;
}
.status-list--stuck .task {
  background: #E8DAB2;
}
.status-list--working-on .task {
  background-color: #C0D6DF;
}
.status-list--complete .task {
  background-color: #00A878;
}

.status-heading {
  padding-inline: 20px;
}

.task {
  min-height: 200px;
  padding: 15px;
  font-size: 14px;
  position: relative;
  box-shadow: 2px 2px 10px 2px rgba(50, 50, 50, 0.13);
}
.task-title {
  font-weight: 600;
}
.task-description {
  margin-top: 15px;
}
.task:hover .task-delete {
  opacity: 1;
  pointer-events: auto;
}

.task-delete {
  display: inline-block;
  border: none;
  background: transparent;
  position: absolute;
  top: 3px;
  right: 3px;
  height: 16px;
  width: 16px;
  opacity: 0;
  pointer-events: none; /* Prevent accidental clicks when hidden */
  transition: opacity 0.2s ease;
}
.task-delete img {
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  opacity: 0.5;
  -webkit-transition-duration: 0.2s;
  /* Safari */
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.task-delete img:hover {
  opacity: 1;
}

#user-filter {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px 32px 8px 12px; /* Right padding for arrow space */
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  width: 220px;
  font-family: "mundial", sans-serif;
  height: 38.5px;
}

#vue-user-filter > div {
  position: relative;
  width: 220px;
  display: flex;
  gap: 10px;
  align-items: center;
}
#vue-user-filter > div label {
  font-size: 14px;
}
#vue-user-filter > div::after {
  content: "▾"; /* Downward triangle */
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
}

.task-form-wrapper {
  position: relative;
}

.task-container {
  display: flex;
  flex-wrap: wrap;
}
.task-container .task {
  width: calc(100% - 20px);
}

.drop-zone {
  width: 20px;
  z-index: 10;
  position: relative;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  border: 4px solid #ddd;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.custom-login-wrapper {
  width: 100%;
}

.taskform-login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 30px;
  background: #eee;
  border-radius: 6px;
}
.taskform-login h3 {
  margin-bottom: 20px;
  color: #666;
}
.taskform-login input:not([type=checkbox]):not([type=submit]), .taskform-login textarea {
  display: block;
  width: 100%;
}
.taskform-login input:not([type=checkbox]):not([type=submit])::placeholder, .taskform-login input:not([type=checkbox]):not([type=submit])::-webkit-input-placeholder, .taskform-login textarea::placeholder, .taskform-login textarea::-webkit-input-placeholder {
  color: #999 !important;
}
.taskform-login label {
  display: flex;
  gap: 5px;
  font-size: 15px;
}
.taskform-login label span {
  color: #666;
  display: block;
  transform: translateY(-2px);
}
.taskform-login select, .taskform-login input, .taskform-login textarea, .taskform-login button {
  padding: 8px 15px 12px !important;
  font-size: 15px !important;
  font-family: "mundial", sans-serif !important;
  background: #fff;
  border-radius: 6px;
  border: none;
}
.taskform-login .button {
  color: #fff;
  padding: 8px 15px 12px;
  cursor: pointer;
  background: #333;
  place-self: end;
}
.taskform-login .button:hover {
  background: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "mundial", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
  color: #111;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, p, ul {
  margin-top: 0;
}

h1, h2, h3 {
  line-height: 1;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 42px;
  color: #999;
}

h3 {
  font-size: 24px;
  color: rgba(68, 68, 68, 0.2666666667);
}

p {
  margin-bottom: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a, button {
  transition: all 0.2s ease;
}