*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  color: #777;
  padding: 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
}

::selection {
  background-color: #4976c8;
  color: #fff;
}

.main {
  background-color: #f7f7f7;
  padding: 2rem 6rem;
  flex: 1;
  position: relative;
}

.heading-primary {
  color: #777;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 4rem;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.heading-primary span {
  padding: 1rem 1.5rem;
  line-height: 1;
  box-decoration-break: clone;
  background-image: linear-gradient(to bottom right, rgba(155, 179, 222, 0.85), rgba(36, 74, 146, 0.85));
}

.heading-tertiary {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2rem;
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  width: 70%;
  z-index: 10;
}
.heading-tertiary span {
  padding: 1rem 1.5rem;
  line-height: 1;
  box-decoration-break: clone;
  background-image: linear-gradient(to bottom right, rgba(155, 179, 222, 0.85), rgba(36, 74, 146, 0.85));
}

.heading-secondary {
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: linear-gradient(to right, #9bb3de, #244a92);
  background-clip: text;
  color: transparent;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  display: inline-block;
}
.heading-secondary--error {
  background-image: linear-gradient(to right, #ff7730, #eb4d4b);
  background-clip: text;
  color: transparent;
  font-size: 3.5rem;
}

.heading-spacer {
  margin-bottom: 4rem;
}

.flex {
  display: flex;
}

.span-all-rows {
  grid-row: 1/-1;
}

.container {
  max-width: 130rem;
  margin: 0 auto;
}

.ma-bt-md {
  margin-bottom: 3rem !important;
}

.ma-bt-lg {
  margin-bottom: 3.5rem !important;
}

.right {
  text-align: right !important;
}

.line {
  margin: 6rem 0;
  margin: 3rem 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.mr {
  margin-right: 1rem;
}

.hidden {
  display: none !important;
}

.alert {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 1.6rem 15rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.alert--success {
  background-color: #20bf6b;
}
.alert--error {
  background-color: #eb4d4b;
}
.alert--impersonate {
  top: auto;
  bottom: 0;
  background-color: #9bb3de;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 3rem;
}
.alert--impersonate .btn-stop-impersonate {
  background-color: #ff7730;
  color: #fff;
  font-size: 1.6rem;
  padding: 1.4rem 3rem;
  border-radius: 10rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  backface-visibility: hidden;
}
.alert--impersonate .btn-stop-impersonate:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  background-color: #c65518;
}
.alert--impersonate .btn-stop-impersonate:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.alert--impersonate .btn-stop-impersonate:focus {
  outline: none;
  background-color: #c65518;
}

.btn, .btn:link, .btn:visited {
  font-size: 1.6rem;
  padding: 1.4rem 3rem;
  border-radius: 10rem;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: all 0.4s;
  font-weight: 400;
  backface-visibility: hidden;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.btn:focus {
  outline: none;
  background-color: #284c91;
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--orange {
  background-color: #ff7730;
  color: #fff;
}
.btn--orange::after {
  background-color: #ff7730;
}
.btn--orange:focus {
  background-color: #c65518;
}
.btn--green {
  background-color: #55c57a;
  color: #fff;
}
.btn--green:hover {
  background-color: #28b487;
}
.btn--green:focus {
  background-color: #28b487;
}

.btn--primary {
  background-color: #4976c8;
  color: #fff !important;
}
.btn--primary:hover, .btn--primary:active, .btn--primary:focus {
  background-color: #194f75;
  color: #fff !important;
}

.btn-triangle {
  width: 5.2rem;
  height: 5.2rem;
  padding: 0;
  background-color: #ff7730;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.btn-triangle .btn-add {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
.btn-triangle:hover {
  background-color: #c65518;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.btn-triangle:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.line-nbm {
  margin: 3rem 0 0 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.triangle-container {
  display: flex;
  justify-content: flex-start;
}

.error {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80rem;
  text-align: center;
}

.error__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.error__emoji {
  font-size: 3.75rem;
  margin-left: 1rem;
}

.error__msg {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 50rem;
  margin: 0 auto;
}

.single-row-container {
  max-width: 100%;
  display: flexbox;
  flex-direction: column;
  align-items: center;
}

.single-row-header {
  display: grid;
  grid-template-columns: 6rem 1fr 1fr 1fr 8rem;
  grid-gap: 1rem;
  margin: 1rem 1rem 0.2rem 1rem;
  color: #777;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 200;
  width: 90%;
  height: 6rem;
}

.single-row {
  display: grid;
  border-radius: 5px;
  grid-template-columns: 6rem 1fr 1fr 1fr 8rem;
  grid-gap: 1rem;
  margin: 0.2rem 1rem 1rem 1rem;
  height: 6rem;
  width: 90%;
  background-image: linear-gradient(to bottom right, rgba(155, 179, 222, 0.85), rgba(36, 74, 146, 0.85));
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
}
.single-row > div:last-child .btn--green {
  height: 100%;
  border-radius: 0 5px 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 2rem;
}

.single-row-img-div {
  justify-self: start;
  margin: 0;
  padding: 0;
  height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
.single-row-img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-row > div:first-child {
  justify-self: start;
  margin: 0;
  padding: 0;
  height: 100%;
  align-self: stretch;
}

.single-row > div:last-child {
  justify-self: end;
  margin: 0;
  padding: 0;
  height: 100%;
  align-self: stretch;
}

.single-row > div:nth-child(2) {
  justify-self: start;
  text-align: left;
}

.single-row > div:nth-child(3) {
  justify-self: center;
  text-align: center;
}

.single-row > div:nth-child(4) {
  justify-self: end;
  text-align: right;
}

.single-row-header > div:first-child {
  justify-self: start;
  margin: 0;
  padding: 0;
  height: 100%;
  align-self: stretch;
}

.single-row-header > div:last-child {
  justify-self: end;
  margin: 0;
  padding: 0;
  height: 100%;
  align-self: stretch;
}

.single-row-header > div:nth-child(2) {
  justify-self: start;
  text-align: left;
}

.single-row-header > div:nth-child(3) {
  justify-self: center;
  text-align: center;
}

.single-row-header > div:nth-child(4) {
  justify-self: end;
  text-align: right;
}

.single-row-container div {
  place-self: center;
}

.row-container {
  max-width: 100%;
  display: flexbox;
  flex-direction: column;
}

.row-header {
  display: grid;
  grid-template-columns: 0.2fr 1fr 2fr 3fr 0.5fr 0.5fr 1fr;
  grid-gap: 1rem;
  margin: 1rem;
  color: #777;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 200;
}

.row {
  display: grid;
  border-radius: 5px;
  grid-template-columns: 0.2fr 1fr 2fr 3fr 0.5fr 0.5fr 1fr;
  grid-gap: 1rem;
  margin: 1rem;
  height: 6rem;
  background-image: linear-gradient(to bottom right, rgba(155, 179, 222, 0.85), rgba(36, 74, 146, 0.85));
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
}

.img-div {
  padding-top: 0.5rem;
}

.row-image-pict {
  height: 5rem;
  width: 100%;
  object-fit: cover;
}

.row--link {
  justify-self: end;
}

.row-container div {
  place-self: center;
}

.le-al {
  justify-self: start;
}

.subRow-container {
  max-width: 100%;
  display: flexbox;
  flex-direction: column;
}

.subRow-header {
  display: grid;
  grid-template-columns: 0.2fr 1fr 1fr 0.5fr;
  grid-gap: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 0.1rem;
  color: #4b4b4b;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 150;
  align-items: center;
}

.subRow {
  display: grid;
  border-radius: 5px;
  grid-template-columns: 0.2fr 1fr 1fr 0.5fr;
  grid-gap: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 0.3rem;
  height: 3rem;
  background-image: linear-gradient(to bottom right, rgba(155, 179, 222, 0.85), rgba(36, 74, 146, 0.85));
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 200;
}

.subRow:link,
.subRow:visited {
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.subRow:hover,
.subRow:active {
  transform: translateY(-2px);
  border: 1px solid #000;
}

.card-container {
  max-width: 100rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
  padding: 2rem;
}

.card {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: 0.3s all;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  max-width: 40rem;
}

.card__header {
  position: relative;
}

.card__picture {
  position: relative;
  clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  height: 22rem;
}

.card__picture-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right bottom, #9bb3de, #244a92);
  opacity: 0.7;
}

.card__picture-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.card__details {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1.75rem;
  grid-column-gap: 2rem;
  padding: 2.5rem 3rem;
}

.card__sub-heading {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  grid-column: 1/-1;
}

.card__text {
  grid-column: 1/-1;
  font-size: 1.5rem;
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 0.75rem;
}

.card__textSubHeading {
  font-size: 1rem;
  font-style: italic;
  margin-left: 1rem;
  margin-bottom: 0.75rem;
}

.card__data {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.card__data svg {
  margin-right: 0.7rem;
}

.card__icon {
  height: 2rem;
  width: 2rem;
  fill: #4976c8;
}

.card__icon-white {
  height: 2rem;
  width: 2rem;
  fill: #fff;
}

.card__footer {
  background-color: #f7f7f7;
  border-top: 1px solid #f1f1f1;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: 11fr 1fr;
  margin-top: auto;
  position: relative;
}

.card__footer-content {
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.card__footer-edit {
  background-color: #ff7730;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.card__footer-edit:hover {
  background-color: #c65518;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.card__footer-edit .btn__userEdit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  padding: 1.5rem 1rem;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  gap: 0.8rem;
}
.card__footer-edit .btn__userEdit svg {
  height: 2.2rem;
  width: 2.2rem;
  fill: #fff;
}
.card__footer-edit .btn__userEdit span {
  white-space: nowrap;
  font-size: 1.2rem;
}

.card__footer-value {
  font-weight: 700;
}

.card__footer-text {
  color: #999;
}

.card__ratings {
  grid-row: 2/3;
}

.card .btn-small,
.card .btn {
  grid-row: 1/3;
  justify-self: end;
  align-self: center;
}

.card__impersonate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  background-color: #9bb3de;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
}
.card__impersonate:hover {
  background-color: #4976c8;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.card__impersonate svg {
  height: 2rem;
  width: 2rem;
  fill: #fff;
  margin-right: 1rem;
}
.card__impersonate--disabled {
  background-color: #9bb3de;
  opacity: 0.5;
  cursor: default;
  min-height: 5.5rem;
  display: block;
  padding: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  pointer-events: none;
}
.card__impersonate--disabled:hover {
  transform: none;
  box-shadow: none;
  background-color: #9bb3de;
}

.footer {
  background-color: #f7f7f7;
  padding: 6rem 4rem 3rem 4rem;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 0.75rem;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    grid-template-columns: 1fr;
    grid-row-gap: 1.25rem;
    justify-items: center;
  }
}

.footer__logo {
  grid-row: 1/3;
  align-self: center;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo {
    grid-row: 1;
  }
}

.footer__logo img {
  height: 3rem;
}

.footer__nav {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.footer__nav li {
  margin-left: 1.5rem;
}

.footer__nav a {
  color: #777;
  text-decoration: none !important;
  transition: all 0.2s;
}
.footer__nav a:hover, .footer__nav a:active {
  color: #4976c8;
}

.footer__copyright {
  justify-self: end;
  color: #999;
}
@media only screen and (max-width: 56.25em) {
  .footer__copyright {
    justify-self: center;
  }
}

.header {
  background-color: #444;
  padding: 0 5rem;
  height: 8rem;
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 75em) {
  .header {
    flex-direction: column;
  }
}

.header__logo {
  height: 4rem;
  margin-right: 1rem;
  border-radius: 3%;
}
@media only screen and (max-width: 75em) {
  .header__logo {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

.nav {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .nav {
    flex-direction: column;
  }
}

.nav svg {
  height: 3rem;
  width: 3rem;
  fill: #f7f7f7;
  margin-right: 1rem;
}

.nav--user {
  justify-content: flex-end;
}

.nav--artwork {
  justify-content: center;
}

.nav__el,
.nav__el:link,
.nav__el:visited {
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__el:hover,
.nav__el:active {
  transform: translateY(-2px);
  text-shadow: 0 0.7rem 1rem #000;
}

.nav__el:not(:last-child) {
  margin-right: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .nav__el:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
}

.nav__el:focus {
  outline: none;
}

.nav__el--cta {
  padding: 1rem 3rem;
  border-radius: 10rem;
  border: 1px solid currentColor !important;
  transition: all 0.3s;
}
.nav__el--cta:hover {
  background-color: #f7f7f7;
  color: #777;
  text-shadow: none;
  border-color: #f7f7f7;
}

.nav__search {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .nav__search {
    order: -1;
    margin-bottom: 1.2rem;
  }
}

.nav__search-btn {
  background: none;
  border: none;
  margin-right: 0.8rem;
  transform: translateY(1px);
}

.nav__search-btn svg {
  height: 2rem;
  width: 2rem;
  fill: #f7f7f7;
}

.nav__search-input {
  font-family: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f7f7f7;
  padding-bottom: 3px;
  border-bottom: 1px solid #999;
  width: 18rem;
  transition: all 0.3s;
}
.nav__search-input::placeholder {
  color: #999;
}
.nav__search-input:focus {
  outline: none;
  width: 25rem;
  border-bottom: 1px solid currentColor;
}

.nav__user-img {
  height: 4rem;
  border-radius: 20%;
  margin-right: 1rem;
}

.nav--services {
  margin: 0 2rem;
}
.nav--services .nav__dropdown {
  position: relative;
  display: inline-block;
}
.nav--services .nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}
.nav--services .nav__dropdown-button {
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav--services .nav__dropdown-button svg {
  height: 2.4rem;
  width: 2.4rem;
  fill: currentColor;
}
.nav--services .nav__dropdown-button:hover {
  transform: translateY(-2px);
  text-shadow: 0 0.7rem 1rem #000;
}
.nav--services .nav__dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #444;
  min-width: 20rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  z-index: 1000;
  border: 1px solid #999;
  overflow: hidden;
}
.nav--services .nav__dropdown:hover .nav__dropdown-content,
.nav--services .nav__dropdown-content:hover {
  display: block;
}
.nav--services .nav__dropdown-item {
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}
.nav--services .nav__dropdown-item:not(:last-child) {
  border-bottom: 1px solid #999;
}
.nav--services .nav__dropdown-item:hover {
  background-color: #4976c8;
  transform: translateY(-2px);
  text-shadow: 0 0.7rem 1rem #000;
}

.login__box {
  background-color: #f7f7f7;
}

.login-form {
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 10rem;
  max-width: 45rem;
  background-color: #fff;
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  padding: 5rem 7rem;
  border-radius: 5px;
}

.form__input {
  display: block;
  font-family: inherit;
  font-size: 1.5rem;
  color: #777;
  padding: 1.25rem 1.75rem;
  border: none;
  width: 100%;
  background-color: #fff;
  background-color: #f2f2f2;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  border-radius: 4px;
  box-sizing: border-box;
}
.form__input:focus {
  outline: none;
  border-bottom: 3px solid #4976c8;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}

.form__group:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form__photo-upload {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

.form__user-photo {
  height: 7.5rem;
  width: 7.5rem;
  border-radius: 50%;
  margin-right: 2rem;
}

.form__upload {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form__upload:focus + label {
  outline: 3px solid #4976c8;
  outline-offset: 3px;
}

.form__upload + label {
  color: #4976c8;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #4976c8;
  padding: 3px;
  transition: all 0.2s;
  cursor: pointer;
}
.form__upload + label:hover {
  background-color: #4976c8;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.pwd-reset:link,
.pwd-reset:visited {
  font-size: 1rem;
  text-align: center;
  color: #777;
  text-decoration: none;
  transition: all 0.2s;
}

.pwd-reset :hover,
.pwd-reset :active {
  color: #4976c8;
}

.form__horizontal {
  display: flex;
}

.form__groupHori:not(:last-child) {
  margin-right: 1rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background-color: #fff;
  padding: 5rem 7rem;
  border-radius: 5px;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 45rem;
  z-index: 1;
  margin: 2rem;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.modal__close {
  background: none;
  border: none;
  font-size: 3rem;
  color: #777;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0.5rem;
  line-height: 1;
}
.modal__close:hover {
  color: #4976c8;
  transform: scale(1.1);
}
.modal__body .form {
  margin: 0;
}

.add__content {
  position: relative;
  z-index: 1000;
}
.add__content.hidden {
  display: none;
}

.side-nav {
  list-style: none;
}

.side-nav li {
  margin: 1rem 0;
  border-left: 0 solid #fff;
  transition: all 0.3s;
}

.side-nav--active,
.side-nav li:hover {
  border-left: 4px solid #fff !important;
}

.side-nav--active a {
  transform: translateX(-3px);
}

.side-nav a:link,
.side-nav a:visited {
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}

.side-nav a:hover,
.side-nav a:active {
  transform: translateX(3px);
}

.side-nav svg {
  height: 1.9rem;
  width: 1.9rem;
  fill: #f7f7f7;
  margin-right: 2rem;
}

.admin-nav {
  margin-top: 5.5rem;
}

.admin-nav__heading {
  margin: 0 5rem 1.5rem 4rem;
  padding-bottom: 3px;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #f2f2f2;
  border-bottom: 1px solid currentColor;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}

.welcome__logo {
  height: 40rem;
}

.dashboard__actions {
  max-width: 120rem;
}

.action-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.action-item {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 0;
  min-width: 18rem;
}
.action-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: #777;
  transition: all 0.3s ease;
  text-align: center;
  height: 10rem;
}
.action-link:hover {
  color: #4976c8;
}

.action-icon {
  margin-bottom: 1rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #9bb3de;
  transition: all 0.3s ease;
}
.action-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: #4976c8;
}

.action-text {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}

.action-link:hover .action-icon {
  background-color: #4976c8;
}
.action-link:hover .action-icon svg {
  fill: #fff;
}

.add__content {
  text-align: left;
  flex: 1;
  padding: 7rem 0;
}

.submit-job-form {
  display: flex;
}

.submit-job__form-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.dropdown-div {
  display: flex;
  align-items: center;
  justify-items: center;
  margin-bottom: 2rem;
}
.dropdown-div label {
  margin-right: 1rem;
}

.add-colors-form {
  display: flex;
}

.color--block {
  width: 5rem;
  height: 5rem;
  border-radius: 5px;
  padding-top: 0.5rem;
}

.color--block-big {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
  padding-top: 0.5rem;
}

.color__list {
  font-size: 1.6rem;
}

.color__detail {
  display: flex;
}

.color__detail-details {
  margin-left: 1rem;
}

.mar-right {
  margin-right: 3rem;
}

.mg-bt-small {
  margin-bottom: 1rem;
}

.master-crop-container {
  display: flex;
}

.crop-div {
  width: 47rem;
  height: 51.5rem;
}

#cropsCanvas {
  border: 2px dashed #444;
  width: 40rem;
  height: 50rem;
  box-sizing: border-box;
  position: absolute;
  background-color: #fff;
}

#markerImage {
  border: 1px solid #777;
  position: relative;
  cursor: crosshair;
  background-color: #fff;
  width: 40.2rem;
  height: 50.2rem;
  margin-right: 2.5rem;
}
#markerImage img {
  width: 40rem;
  height: 50rem;
}

.marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

.user-view {
  background-color: #fff;
  max-width: 120rem;
  margin: 0 auto;
  min-height: 100vh;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  display: flex;
}

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

.user-view__menu {
  flex: 25rem 0 0;
  background-image: linear-gradient(to right bottom, #9bb3de, #244a92);
  padding: 4rem 0;
}

.user-view__content {
  flex: 1;
  padding: 7rem 0;
}

.user-add__content {
  text-align: left;
  flex: 1;
  padding: 7rem 0;
}

.user-view__form-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.dashboard {
  max-width: 120rem;
  margin: 0 auto;
  padding: 2rem;
}
.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.dashboard__charts-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.dashboard__chart-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.dashboard__chart-controls .form__input {
  min-width: 150px;
}
.dashboard__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.dashboard__charts .chart-container {
  border-radius: 8px;
  padding: 1.5rem;
}
.dashboard__charts .chart-container h3 {
  margin-bottom: 1.5rem;
  color: var(--color-grey-dark-1);
  font-size: 1.6rem;
  text-align: center;
}
.dashboard__charts .chart-container canvas {
  width: 100% !important;
  height: 300px !important;
}
.dashboard__stats {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dashboard__stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dashboard__date-range {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #244a92;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.summary-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2rem;
}

.summary-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
}
.summary-card:hover {
  transform: translateY(-2px);
}
.summary-card h3 {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.summary-card__value {
  font-size: 3rem;
  font-weight: 700;
  color: #244a92;
}
.summary-card__value.high {
  color: #eb4d4b;
}
.summary-card__value.medium {
  color: #ff7730;
}
.summary-card__value.low {
  color: #20bf6b;
}

.chart {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
}
.chart h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.8rem;
}
.chart .chart-subtitle {
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 1.2rem;
  font-style: italic;
}
.chart canvas {
  width: 100% !important;
  height: 300px !important;
}

.chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 15rem;
  background-color: #f7f7f7;
  border-radius: 4px;
  color: #777;
  font-size: 1.4rem;
}
.chart-placeholder p {
  margin-bottom: 0.5rem;
}

.pagination-info {
  text-align: center;
  padding: 1rem;
  background-color: #f7f7f7;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #777;
}

.stats-list {
  position: relative;
  display: flex;
  gap: 2rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 0 4rem;
}

.stats-list__container {
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.stats-list__scrollbar {
  margin-top: 1rem;
  height: 0.8rem;
  background: #f0f0f0;
  border-radius: 0.4rem;
  position: relative;
  cursor: pointer;
}

.stats-list__scrollbar-thumb {
  height: 100%;
  background: #244a92;
  border-radius: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 2rem;
  transition: background 0.2s ease;
  cursor: grab;
}
.stats-list__scrollbar-thumb:hover {
  background: #1a3a7a;
}
.stats-list__scrollbar-thumb:active {
  cursor: grabbing;
}

.stats-list__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(36, 74, 146, 0.9);
  color: white;
  border: none;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  font-size: 2rem;
  font-weight: bold;
}
.stats-list__arrow:hover {
  background: rgb(36, 74, 146);
  width: 4rem;
}
.stats-list__arrow:disabled {
  background: rgba(128, 128, 128, 0.5);
  cursor: not-allowed;
  width: 3rem;
}
.stats-list__arrow--left {
  left: 0;
}
.stats-list__arrow--right {
  right: 0;
}

.stat-card {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid #244a92;
  transition: transform 0.2s ease;
  min-width: 30rem;
  flex-shrink: 0;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.stat-card__title {
  font-size: 1.4rem;
  color: #777;
  font-weight: 600;
}
.stat-card__cpu {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #fff;
}
.stat-card__cpu.high {
  background-color: #eb4d4b;
}
.stat-card__cpu.medium {
  background-color: #ff7730;
}
.stat-card__cpu.low {
  background-color: #20bf6b;
}
.stat-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.stat-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}
.stat-card__row span:first-child {
  color: #777;
  font-weight: 500;
}
.stat-card__row span:last-child {
  color: #244a92;
  font-weight: 600;
}

.stats-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard__stats-nav {
  background: rgba(36, 74, 146, 0.9);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: bold;
}
.dashboard__stats-nav:hover {
  background: rgb(36, 74, 146);
}
.dashboard__stats-nav:disabled {
  background: rgba(128, 128, 128, 0.5);
  cursor: not-allowed;
}

@media only screen and (max-width: 75em) {
  .dashboard__header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .dashboard__charts {
    grid-template-columns: 1fr;
  }
  .summary-cards {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  .stats-list {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
}
@media only screen and (max-width: 56.25em) {
  .dashboard {
    padding: 1rem;
  }
  .summary-cards {
    grid-template-columns: 1fr;
  }
  .stats-list {
    grid-template-columns: 1fr;
  }
  .stat-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.loading-overlay-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
}

.loading-overlay-charts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
  border-radius: 8px;
}

.loading-overlay__spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #244a92;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.loading-overlay__text {
  font-size: 1.6rem;
  color: #244a92;
  font-weight: 500;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.date-range__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #777;
}
.date-range__slider {
  position: relative;
  height: 4rem;
  display: flex;
  align-items: center;
}
.date-range__input {
  position: absolute;
  width: 100%;
  height: 0.6rem;
  background: transparent;
  pointer-events: none;
  appearance: none;
  z-index: 3;
}
.date-range__input::-webkit-slider-thumb {
  appearance: none;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: #244a92;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.date-range__input::-moz-range-thumb {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: #244a92;
  cursor: pointer;
  pointer-events: auto;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.date-range__input:focus {
  outline: none;
}
.date-range__track {
  position: absolute;
  width: 100%;
  height: 0.6rem;
  background: #e9ecef;
  border-radius: 0.3rem;
  z-index: 1;
}
.date-range__fill {
  position: absolute;
  height: 0.6rem;
  background: #244a92;
  border-radius: 0.3rem;
  z-index: 2;
  transition: all 0.1s ease;
}

.dashboard {
  max-width: 120rem;
  margin: 0 auto;
  padding: 2rem;
}
.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.dashboard__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .dashboard__layout {
    grid-template-columns: 1fr;
  }
}
.dashboard__map-section .map-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dashboard__map-section .map-container .map {
  height: 400px;
  width: 100%;
}
.dashboard__map-section .map-container .map-info {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}
.dashboard__map-section .map-container .map-info__device h3 {
  margin: 0 0 0.5rem 0;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.dashboard__map-section .map-container .map-info__device p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.dashboard__charts-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.dashboard__chart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dashboard__chart-controls select#deviceSelect {
  max-width: 250px;
  min-width: 150px;
  width: 100%;
}
.dashboard__chart-controls .chart-controls-spacer {
  flex: 1 1 2rem;
  min-width: 2rem;
  height: 1px;
}
.dashboard__chart-controls .total-measurements-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: #f7f7f7;
  border-radius: 0.5rem;
  border: 2px solid var(--color-border);
  margin-left: 1rem;
}
.dashboard__chart-controls .form__input {
  min-width: 150px;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  background: #f7f7f7;
  font-size: 1rem;
}
.dashboard__chart-controls .form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
}
.dashboard__chart-controls .btn {
  padding: 0.5rem 1rem;
  background: #244a92;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dashboard__chart-controls .btn:hover {
  background: #1a3a7a;
}
.dashboard__chart-controls .btn.btn-primary {
  background: #244a92;
}
.dashboard__chart-controls .btn.btn-primary:hover {
  background: #1a3a7a;
}
.dashboard__chart-controls .date-range-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dashboard__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.dashboard__charts .chart-container {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
}
.dashboard__charts .chart-container h3 {
  margin-bottom: 1.5rem;
  color: var(--color-grey-dark-1);
  font-size: 1.6rem;
  text-align: center;
}
.dashboard__charts .chart-container canvas {
  width: 100% !important;
  height: 300px !important;
}

.dashboard__layout .summary-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  height: 400px;
  max-width: 200px;
}

.dashboard__layout .summary-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dashboard__layout .summary-card:hover {
  transform: translateY(-2px);
}
.dashboard__layout .summary-card h3 {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.dashboard__layout .summary-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: #244a92;
}
.dashboard__layout .summary-card__value.high {
  color: #eb4d4b;
}
.dashboard__layout .summary-card__value.medium {
  color: #ff7730;
}
.dashboard__layout .summary-card__value.low {
  color: #20bf6b;
}

.map-marker {
  transition: transform 0.2s ease;
}
.map-marker:hover {
  transform: scale(1.2);
}

.mapboxgl-popup {
  max-width: 300px;
}
.mapboxgl-popup .mapboxgl-popup-content {
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.mapboxgl-popup .mapboxgl-popup-content h3 {
  margin: 0 0 0.5rem 0;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.mapboxgl-popup .mapboxgl-popup-content p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.mapboxgl-popup .mapboxgl-popup-content button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}
.mapboxgl-popup .mapboxgl-popup-content button:hover {
  background: var(--color-primary-dark);
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: var(--color-text-secondary);
  font-style: italic;
}

.error {
  background: #fee;
  color: #c33;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #fcc;
  margin: 1rem 0;
  text-align: center;
}

@media only screen and (max-width: 75em) {
  .dashboard__header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .dashboard__layout {
    grid-template-columns: 1fr;
  }
  .dashboard__charts {
    grid-template-columns: 1fr;
  }
  .dashboard__layout .summary-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: auto;
  }
}
@media only screen and (max-width: 56.25em) {
  .dashboard {
    padding: 1rem;
  }
  .dashboard__map-section .map-container .map {
    height: 300px;
  }
  .dashboard__map-section .map-container .map-info {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 1rem;
    max-width: none;
  }
  .dashboard__layout .summary-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}

/*# sourceMappingURL=style.css.map */
