:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* inter-cyrillic-ext-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-cyrillic-ext-400-normal.2440d5f8.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-ext-400-normal.2f7e2d5f.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* inter-cyrillic-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-cyrillic-400-normal.547767ef.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-400-normal.155d25e8.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* inter-greek-ext-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-greek-ext-400-normal.f8992900.woff2) format('woff2'), url(/_next/static/media/inter-greek-ext-400-normal.f18bf187.woff) format('woff');
  unicode-range: U+1F00-1FFF;
}

/* inter-greek-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-greek-400-normal.573bacd1.woff2) format('woff2'), url(/_next/static/media/inter-greek-400-normal.c753a7cd.woff) format('woff');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* inter-vietnamese-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-vietnamese-400-normal.de4fc44f.woff2) format('woff2'), url(/_next/static/media/inter-vietnamese-400-normal.a9dd2faf.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* inter-latin-ext-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-latin-ext-400-normal.32a25442.woff2) format('woff2'), url(/_next/static/media/inter-latin-ext-400-normal.4edcaace.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* inter-latin-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_next/static/media/inter-latin-400-normal.ef6d3f52.woff2) format('woff2'), url(/_next/static/media/inter-latin-400-normal.2c7a775c.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* inter-cyrillic-ext-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-cyrillic-ext-500-normal.d8f535fc.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-ext-500-normal.d112b22c.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* inter-cyrillic-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-cyrillic-500-normal.5ec9103b.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-500-normal.6b846965.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* inter-greek-ext-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-greek-ext-500-normal.5fe403a5.woff2) format('woff2'), url(/_next/static/media/inter-greek-ext-500-normal.15398cd6.woff) format('woff');
  unicode-range: U+1F00-1FFF;
}

/* inter-greek-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-greek-500-normal.947d4ab3.woff2) format('woff2'), url(/_next/static/media/inter-greek-500-normal.e66131f5.woff) format('woff');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* inter-vietnamese-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-vietnamese-500-normal.7c0a695f.woff2) format('woff2'), url(/_next/static/media/inter-vietnamese-500-normal.a3a73b95.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* inter-latin-ext-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-latin-ext-500-normal.d9b491de.woff2) format('woff2'), url(/_next/static/media/inter-latin-ext-500-normal.a19a84a6.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* inter-latin-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/_next/static/media/inter-latin-500-normal.b7b43ace.woff2) format('woff2'), url(/_next/static/media/inter-latin-500-normal.cb4c8ceb.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* inter-cyrillic-ext-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-cyrillic-ext-600-normal.dd95b020.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-ext-600-normal.7817fa57.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* inter-cyrillic-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-cyrillic-600-normal.8c69e1bb.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-600-normal.1cf09d31.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* inter-greek-ext-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-greek-ext-600-normal.d05f940f.woff2) format('woff2'), url(/_next/static/media/inter-greek-ext-600-normal.e7a185cc.woff) format('woff');
  unicode-range: U+1F00-1FFF;
}

/* inter-greek-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-greek-600-normal.ee808ffe.woff2) format('woff2'), url(/_next/static/media/inter-greek-600-normal.f2d09137.woff) format('woff');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* inter-vietnamese-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-vietnamese-600-normal.9d518599.woff2) format('woff2'), url(/_next/static/media/inter-vietnamese-600-normal.c5ce3fcb.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* inter-latin-ext-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-latin-ext-600-normal.38b075d8.woff2) format('woff2'), url(/_next/static/media/inter-latin-ext-600-normal.49faa47a.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* inter-latin-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/_next/static/media/inter-latin-600-normal.8fb1a964.woff2) format('woff2'), url(/_next/static/media/inter-latin-600-normal.ce0f5f43.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* inter-cyrillic-ext-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-cyrillic-ext-700-normal.94d4fa7d.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-ext-700-normal.a454a69f.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* inter-cyrillic-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-cyrillic-700-normal.9ce56ec3.woff2) format('woff2'), url(/_next/static/media/inter-cyrillic-700-normal.3ae9e273.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* inter-greek-ext-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-greek-ext-700-normal.411652e2.woff2) format('woff2'), url(/_next/static/media/inter-greek-ext-700-normal.b9d71c77.woff) format('woff');
  unicode-range: U+1F00-1FFF;
}

/* inter-greek-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-greek-700-normal.a094cf2b.woff2) format('woff2'), url(/_next/static/media/inter-greek-700-normal.7cdea0fb.woff) format('woff');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* inter-vietnamese-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-vietnamese-700-normal.c48feea2.woff2) format('woff2'), url(/_next/static/media/inter-vietnamese-700-normal.d9926008.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* inter-latin-ext-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-latin-ext-700-normal.eb37b59d.woff2) format('woff2'), url(/_next/static/media/inter-latin-ext-700-normal.bf50e2d6.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* inter-latin-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_next/static/media/inter-latin-700-normal.7c3e92e6.woff2) format('woff2'), url(/_next/static/media/inter-latin-700-normal.231cfd86.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* Main container */
.Home_container__d256j {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
    circle at center,
    rgba(39, 87, 150, 0.8) 0%,
    #16223f 50%,
    #090f1d 100%
  );
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.Home_container__d256j.Home_fadeIn__6AUDn {
  opacity: 1;
}

/* Navigation Bar */
.Home_navBar__766fi {
  background: #1a375e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.5rem 0;
}

.Home_navContainer__m4RII {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.Home_logoContainer__eSRxx {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  padding: 0 1rem;
}

.Home_logoContainer__eSRxx .Home_logo__IOQAX {
  max-width: 160%;
  height: auto;
  max-height: 200px; /* Adjust based on your preference */
  object-fit: contain;
}

/* For larger screens */
@media (min-width: 768px) {
  .Home_logoContainer__eSRxx .Home_logo__IOQAX {
    max-height: 100px;
  }
}

.Home_navLogo__l_Myf {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

/* For tablets */
@media (max-width: 1024px) {
  .Home_navLogo__l_Myf {
    height: 50px;
  }
}

/* For smaller tablets */
@media (max-width: 768px) {
  .Home_navLogo__l_Myf {
    height: 45px;
  }
}

/* For mobile */
@media (max-width: 480px) {
  .Home_navLogo__l_Myf {
    height: 45px;
  }
}

/* For very small devices */
@media (max-width: 340px) {
  .Home_navLogo__l_Myf {
    height: 20px;
  }
}

.Home_navContent__9Xpuq {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Home_title__hYX6j {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: white;
}

.Home_subtitle__KzT68 {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0.25rem 0 0 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Main content */
.Home_main__VkIEL {
  flex: 1 1;
  padding: 2rem min(5%, 2rem);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
 
}

/* Hero Section */
.Home_hero__VkeT1 {
  text-align: center;
  margin: 0 auto 0.5rem;
  padding: 2rem 1.5rem;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Home_hero__VkeT1 .Home_logoContainer__eSRxx {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.Home_heroLogo__g2yV7 {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

/* Login Section */
.Home_loginSection__rXvfP {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2rem auto;  
  width: 100%;
  max-width: 420px;  
  padding: 0 1rem;   
  box-sizing: border-box;
}

@media (min-width: 421px) and (max-width: 767px) {
  .Home_loginSection__rXvfP {
    width: 90%;  
    margin: 2rem auto;  
  }
}

@media (min-width: 768px) {
  .Home_loginSection__rXvfP {
    max-width: 500px;  
    margin: 0 auto 2rem !important;
  }
}

.Home_loginSection__rXvfP .Home_primaryButton__eqY8U {
  margin: 1rem 0;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.Home_loginSection__rXvfP .Home_orContinue__tXS6M {
  color: #64748b;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.Home_loginForm__K__4N {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Input label styles */
.Home_inputLabel__wpZee {
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
  width: 100%;
  color: #f7f7f7;
}

.Home_loginForm__K__4N input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.2s;
}

.Home_loginForm__K__4N input:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 1px #3182ce;
}

.Home_loginForm__K__4N {
  width: 100%;
  max-width: 420px; /* Slightly more than 400px to account for the gap */
  margin: 0 auto;
}

.Home_loginForm__K__4N input[type="email"],
.Home_loginForm__K__4N input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #3182ce;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-width 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
  box-shadow: 0 0 0 1px rgba(49, 130, 206, 0.3);
}

.Home_loginForm__K__4N input[type="email"]:focus,
.Home_loginForm__K__4N input[type="password"]:focus {
  border-width: 2px;
  box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.3);
}

.Home_formActions__Lbnha {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 1rem 0;
}

.Home_orContinue__tXS6M {
  color: #718096;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  width: 100%;
}

.Home_orContinue__tXS6M a,
.Home_rulesLink__v3JDQ {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.Home_orContinue__tXS6M a:hover,
.Home_rulesLink__v3JDQ {
  display: inline-block;
  margin-top: 0rem;
  cursor: pointer;
}

.Home_rulesLink__v3JDQ:hover {
  color: #2c5282;
  text-decoration: underline;
}

.Home_rulesContent__CU7Hu {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: #f8fafc;
  border-radius: 8px;
  text-align: left;
  color: #ffffff;
  border: 1px solid #e2e8f0;
}

.Home_rulesList__ZdlFg {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.Home_rulesList__ZdlFg li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #4a5568;
}

.Home_pointsInfo__cqNhi {
  margin-top: 1.25rem;
  padding: 1rem;
  background-color: #edf2f7;
  border-radius: 6px;
}

.Home_pointsInfo__cqNhi h6 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #2d3748;
  font-weight: 600;
}

.Home_pointsInfo__cqNhi ul {
  margin: 0;
  padding-left: 1.25rem;
}

.Home_pointsInfo__cqNhi li {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0.25rem;
  list-style-type: none;
  position: relative;
  padding-left: 1.25rem;
}

.Home_pointsInfo__cqNhi li:before {
  content: '•';
  color: #3182ce;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.Home_userInfo__umA09 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
}

.Home_hero__VkeT1 h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.Home_heroText__g9CCy {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Form elements */
.Home_formGroup__KFkHd {
  margin-bottom: 1.5rem;
  width: 100%;
}

.Home_labelRow__AnNCx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.Home_inputLabel__wpZee {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #f7f7f8;
  font-size: 0.95rem;
}

.Home_textArea__g_RFd {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  color: #232d3d;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  min-height: 120px;
}



.Home_textArea__g_RFd:disabled {
  background-color: #f7fafc;
  cursor: not-allowed;
}

.Home_speechButtonContainer__HuN7a {
  margin-left: 0.75rem;
}

/* Categories - Base Styles */
.Home_categories___FrOa {
  margin: 0 auto 3rem auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.Home_categories___FrOa > h2 {
  width: 100%;
  text-align: center !important;
  margin: 0 0 1.5rem 0 !important;
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700 !important;
  z-index: 1400;
  padding: 0 !important;
  position: static !important;
}

/* Desktop styles */
@media (min-width: 901px) {
  .Home_categories___FrOa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;

    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border: 1px solid #e2e8f0;
  }

  .Home_categoriesGrid__XygeJ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
    width: 100%;
    margin: 2.5rem;
  }
  
  .Home_categoryCard__3jCoL h3 {
    text-align: center;
    color: #1a365d !important;
    font-size: 1.5rem !important;
  }
  
  .Home_categoryCard__3jCoL {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid #e2e8f0;
    height: 100%;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    justify-content: space-between;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .Home_categoryCard__3jCoL h3 {
    color: #ffffff;
    margin: 0.5rem 0;
    z-index: 10000;
  }
  
  .Home_categoryCard__3jCoL p {
    color: #ffffff;
    margin: 0.5rem 0 1rem;
    display: block;
  }
  
  .Home_categoryCard__3jCoL button {
    display: block;
  }
}

.Home_categoryCard__3jCoL {
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 0px solid #e2e8f0;
  height: 100%;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  justify-content: space-between;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}



/* Make the entire card clickable */
.Home_categoryCard__3jCoL a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.01;
}

.Home_categoryCard__3jCoL > *:not(a) {
  position: relative;
  z-index: 2;
}

.Home_categoryCard__3jCoL h3 {
  color: #1a365d;
  font-size: 1.1rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.Home_categoryCard__3jCoL .Home_categoryIcon__KfKby {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.Home_categoryCard__3jCoL h3 {
  margin: 0.5rem 0;
  color: white !important; 
  font-size: 1.1rem;
  position: relative;
  z-index: 1000;
  width: 100%;
  font-weight: 600;
}

.Home_categoryCard__3jCoL p {
  margin: 0.25rem 0 1rem;
  color: white !important; 
  font-size: 0.9rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Desktop styles */
@media (min-width: 768px) {

  .Home_loginSection__rXvfP {
    margin: 0 auto 2rem !important; /* Ensure centering on desktop */
  }
  .Home_categoryCard__3jCoL {
    background: linear-gradient(0deg, #1a365d 0%, #2c5282 100%);


  }
  
  .Home_categories___FrOa > h2 {
    color: white !important; /* White color for desktop */
    font-size: 1.8rem;
  }
}

/* Mobile and Tablet - Up to 900px */
@media (max-width: 900px) {
  .Home_hero__VkeT1 {
    margin: 0 1.5rem 2rem !important;
    max-width: calc(100% - 3rem) !important;
    width: auto !important;
    padding: 2rem 1.5rem !important;
    box-sizing: border-box !important;
    margin-top: 1rem !important;
  }
  
  .Home_categories___FrOa {
    padding: 1.5rem !important;
    background: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    margin: 0 1.5rem 1.5rem !important;
    width: calc(100% - 3rem) !important;
    box-sizing: border-box !important;
    border-radius: 12px;
  }

  .Home_categoryCard__3jCoL {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem 0 !important;
  }
  
  /* Extra small devices (340px and below) */
  @media (max-width: 340px) {
    .Home_hero__VkeT1,
    .Home_categories___FrOa {
      margin-left: 1rem !important;
      margin-right: 1rem !important;
      width: calc(100% - 2rem) !important;
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  }
  .Home_categoryCard__3jCoL {
    background: #f8fafc;
  }
}

.Home_categories___FrOa h2 {
  font-size: 1.8rem;
  padding: 0 0.5rem 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
  color: white;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 1rem;
  background: transparent !important;
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Tablet - Same as mobile but with more width */
@media (min-width: 601px) and (max-width: 900px) {
  .Home_categories___FrOa {
    display: flex;
    flex-direction: column;
    padding: 0 2rem 2rem;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .Home_categories___FrOa h2 {
    color: #1a365d; /* Blue color for tablet */
  }
  
  .Home_categoryCard__3jCoL {
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(0deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color:  white;
    margin-bottom: 1rem;
  }
  
  .Home_categoryCard__3jCoL .Home_categoryIcon__KfKby {
    background: rgba(255, 255, 255, 0.0) !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .Home_categoryCard__3jCoL .Home_categoryIcon__KfKby img {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    filter: brightness(0) invert(1) !important;
    object-fit: contain !important;
  }
  
  .Home_categories___FrOa h2 {
    font-size: 1.8rem;
    padding: 0 0.5rem 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
    background: white;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    padding-top: 2rem;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .Home_categoryCard__3jCoL h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    flex-grow: 1;
    color: white;
  }
  
  /* Specific styles for Glasbruch and Graffiti cards */
  .Home_categoryCard__3jCoL[data-category="glasbruch"] h3,
  .Home_categoryCard__3jCoL[data-category="graffiti"] h3 {
    margin-left: 1.75rem; /* Add more left margin for these specific cards */
  }
  
  .Home_categoryCard__3jCoL .Home_categoryIcon__KfKby img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
  }
  
  .Home_categoryCard__3jCoL h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem; /* Match Kategorien heading size */
    line-height: 1.2;

  }
  
  .Home_categoryCard__3jCoL p {
    margin: 0;
    font-size: 0.85rem;
    display: none; /* Hide description on mobile */
  }
  
  .Home_categoryCard__3jCoL button.Home_primaryButton__eqY8U {
    display: none; /* Hide button on mobile */
  }
  
  .Home_categoryCard__3jCoL:last-child {
    grid-column: span 2;
  }
}

/* SVG Icon Styles */
.Home_svgIconContainer__F1MAP {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.Home_svgIcon__m8yMs {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  object-fit: contain !important;
}

/* Mobile */
@media (max-width: 600px) {
  .Home_categoryCard__3jCoL .Home_categoryIcon__KfKby {
    background: rgba(255, 255, 255, 0.0) !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .Home_categoryCard__3jCoL .Home_categoryIcon__KfKby img {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    filter: brightness(0) invert(1) !important;
    object-fit: contain !important;
  }
  
  .Home_categories___FrOa {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    gap: 0.5rem;
    background: transparent;
    box-shadow: none;
    border: none;
    margin-bottom: 1.5rem;
    display: block;
  }
  
  .Home_categoryCard__3jCoL p,
  .Home_categoryCard__3jCoL button.Home_primaryButton__eqY8U {
    display: none;
  }
  
  .Home_categoryCard__3jCoL {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: linear-gradient(0deg, #1a365d 0%, #2c5282 100%);
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    width: 100%;
    color: white; /* White text for better contrast */
    min-height: 80px; /* Ensure consistent minimum height */
    height: auto; /* Allow height to grow with content */
    margin: 0 0 0.5rem 0; /* Ensure consistent bottom margin */
  }
  
  .Home_categoryCard__3jCoL:last-child {
    grid-column: 1;
    margin-top: 1.5rem;
  }
  
  .Home_categories___FrOa h2 {
    font-size: 1.8rem;
    padding: 0 0.5rem 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
    background: white;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    padding-top: 2rem;
    border-bottom: 1px solid #e2e8f0;
  }
}

.Home_categoryCard__3jCoL:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 601px) {
  .Home_categoryIcon__KfKby {
    color: #2b6cb0;
  }
}

.Home_categoryIcon__KfKby {
  font-size: 1.8rem;
  color: #ffffff; /* White icon for mobile */
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.9;
}

@media (min-width: 601px) {
  .Home_categoryCard__3jCoL h3 {
    color: #1a365d;
  }
}

.Home_categoryCard__3jCoL h3 {
  color: white; /* White text for mobile */
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  width: 100%;
}

.Home_categoryCard__3jCoL p {
  color: #4a5568;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  max-width: 300px;
}

.Home_primaryButton__eqY8U {
  margin-top: 1rem;
  width: 100%;
  max-width: 200px;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #2b6cb0;
  transition: background-color 0.2s, transform 0.1s;
  display: inline-block;
  text-align: center;
}

.Home_primaryButton__eqY8U:hover {
  background-color: #2c5282;
}

.Home_primaryButton__eqY8U:active {
  transform: translateY(1px);
}

.Home_secondaryButton__6EeWS {
  background-color: #2d3748;
  color: #e2e8f0;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 1rem;
  width: 100%;
  max-width: 200px;
  display: inline-block;
  text-align: center;
}

.Home_secondaryButton__6EeWS:hover {
  background-color: #2d3748;
  opacity: 0.95;
}

.Home_secondaryButton__6EeWS:active {
  transform: translateY(1px);
}

/* Messages */
/* Progress bar styles */
.Home_progressContainer__1utUm {
  width: 100%;
  background-color: #e2e8f0;
  border-radius: 4px;
  margin: 1rem 0;
  overflow: hidden;
  height: 24px;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.Home_progressBar__wo4P_ {
  height: 100%;
  background: linear-gradient(135deg, #2b6cb0 0%, #3182ce 100%);
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
  border-radius: 4px;
}

.Home_progressText__PnnTa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2d3748;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.Home_errorMessage__n47_b {
  background-color: #b91c1c;
  background: linear-gradient(135deg, #b65f17 0%, #b91c1c 100%);
  color: #fee2e2;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  border-left: 0px solid #dc2626;
  box-shadow: 0 2px 4px rgba(230, 122, 122, 0.5);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.Home_successMessage__rZrmj {
  background: linear-gradient(135deg, #166534 0%, #16a34a 100%);
  color: #dcfce7;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  border-left: 0px solid #16a34a;
  text-align: center;
  box-shadow: 0 2px 4px rgba(198, 255, 165, 0.5);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Privacy Checkbox - Simple and Visible */
.Home_privacyCheckboxContainer__zjRTi {
  margin: 1.5rem 0;
  padding: 15px;
  background-color: #101a2c;
  border: 0px solid #16243d;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.Home_privacyCheckboxLabel__pSnFN {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #eeeeee;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

.Home_privacyCheckboxLabel__pSnFN input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.Home_privacyCheckboxLabel__pSnFN a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  margin: 0 3px;
}

.Home_privacyCheckboxLabel__pSnFN a:hover {
  text-decoration: underline;
}

.Home_buttonGroup__KGCaj {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Home_stepContainer__K0ZSs {
  background: #101a2c;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 11px rgba(0, 0, 0, 0.5);
  max-width: 600px;

  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.Home_stepContainer__K0ZSs h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.Home_stepContainer__K0ZSs p {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Photo Preview in Additional Info */
.Home_photoPreviewContainer__md20A {
  margin: 1.5rem 0;
  background-color: #16243d;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.Home_photoPreviewContainer__md20A h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #eeeeee;
  font-size: 1.1rem;
}

.Home_photoPreview__Oy8f3 {
  width: 100%;
  max-height: 300px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #585858;
}

.Home_photoImage__4yZzR {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Form Group */
.Home_formGroup__KFkHd {
  margin: 1.5rem 0;
}

.Home_inputLabel__wpZee {
  display: block;
  margin-bottom: -2.6rem;
  font-weight: 500;
  color: #f7f7f7;
  font-size: 1.1rem;
}

.Home_textArea__g_RFd {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  margin: 0.5rem 0 1.5rem;
  min-height: 120px;
  resize: vertical;
}

.Home_textArea__g_RFd:focus {
  outline: none;
  border-color: #7c7c7c;
  box-shadow: 0 0 0 2px rgba(59, 61, 63, 0.2);
}

/* How it works */
.Home_howItWorks__Xapkl {
  margin-top: 4rem;
  text-align: center;
}

.Home_howItWorks__Xapkl h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.Home_steps__hbS9k {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 2rem;
}

.Home_step__vdJn5 {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.2s;
}

.Home_step__vdJn5:hover {
  transform: translateY(-4px);
}

.Home_stepNumber__24rip {
  width: 40px;
  height: 40px;
  background: #2b6cb0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  font-size: 1.2rem;
}

.Home_step__vdJn5 h3 {
  color: #1a365d;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.Home_step__vdJn5 p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Footer */
.Home_footer__yFiaX {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

/* Tablet adjustments for footer sections */
@media (min-width: 601px) and (max-width: 900px) {
  .Home_footerSection__t4Rwp:nth-child(1),
  .Home_footerSection__t4Rwp:nth-child(3),
  .Home_footerSection__t4Rwp:nth-child(4) {
    margin-left: 4rem;
  }
}

.Home_footerContent__RZUDB {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}

.Home_footerSection__t4Rwp h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  display: inline-block;
}

.Home_footerSection__t4Rwp h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.Home_footerSection__t4Rwp p,
.Home_footerSection__t4Rwp a {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.Home_footerSection__t4Rwp a:hover {
  color: white;
  text-decoration: underline;
}

/* Remove default list styling */
.Home_footerSection__t4Rwp ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Home_footerSection__t4Rwp li {
  margin-bottom: 0.5rem;
}

.Home_copyright__Iq1SU {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .Home_hero__VkeT1 h2 {
    font-size: 1.8rem;
  }
  
  .Home_heroText__g9CCy {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .Home_logoContainer__eSRxx {
    flex-direction: row;
    text-align: left;
    padding: 0 1rem;
  }
  
  .Home_logo__IOQAX {
    height: 50px;
    margin-bottom: 0;
  }
  
  .Home_title__hYX6j {
    font-size: 1.25rem;
  }
  
  .Home_subtitle__KzT68 {
    font-size: 0.8rem;
  }
  
  .Home_hero__VkeT1 {
    padding: 1.5rem 1rem;
    margin: 3rem auto 1.5rem;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
  }
  
  .Home_hero__VkeT1 h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .Home_categories___FrOa {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    margin: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

  }
  
  .Home_categoryCard__3jCoL {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 1.5rem 1rem;
  }
  
  .Home_categoryCard__3jCoL:last-child {
    margin-bottom: 0;
  }
  
  .Home_stepContainer__K0ZSs {
    padding: 1.5rem 1rem;
    margin: 0 auto 2rem;  /* Center the container */
    width: calc(100% - 4rem);  /* Account for the margins */
    max-width: 100%;
    margin-top: 2rem;
    border-radius: 12px;  /* Match desktop border radius */
  }
  
  .Home_steps__hbS9k {
    grid-template-columns: 1fr;
    padding: 0 2.5rem;  /* Equal padding on both sides */
    margin: 0;   /* Equal margin on both sides */
    width: 100%;
    box-sizing: border-box;
  }
  
  .Home_step__vdJn5 {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 1rem;
  }
  
  .Home_footerContent__RZUDB {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1rem;
  }
  
  .Home_footerSection__t4Rwp {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .Home_footerSection__t4Rwp:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
  }
  
  .Home_footerSection__t4Rwp h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .Home_main__VkIEL {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .Home_buttonGroup__KGCaj {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  
  .Home_primaryButton__eqY8U,
  .Home_secondaryButton__6EeWS {
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  
  .Home_textArea__g_RFd {
    margin: 1rem 0;
  }
}

/* Animations */
@keyframes Home_fadeIn__6AUDn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility classes */
.Home_textCenter__TiN_f {
  text-align: center;
}

.Home_mt1__Fk3K0 { margin-top: 0.5rem; }
.Home_mt2__bhR74 { margin-top: 1rem; }
.Home_mt3__PTnX1 { margin-top: 1.5rem; }
.Home_mt4__5qAHM { margin-top: 2rem; }
.Home_mb1__TSSTN { margin-bottom: 0.5rem; }
.Home_mb2__NFSAk { margin-bottom: 1rem; }
.Home_mb3__Pvra_ { margin-bottom: 1.5rem; }
.Home_mb4__qhczI { margin-bottom: 2rem; }

/* Section Title */
.Home_sectionTitle__DKb2S {
  text-align: center;
  color: #ffffff !important;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 2rem;
  width: 100%;
}

/* Ensure text remains white in all media queries */
@media (max-width: 768px) {
  .Home_sectionTitle__DKb2S {
    color: #ffffff !important;
    font-size: 1.5rem;
  }
}

/* Categories Section */
.Home_categories___FrOa {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Button Group */
.Home_buttonGroup__KGCaj {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.Home_buttonRow__Nrj5f {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.Home_primaryButton__eqY8U, 
.Home_secondaryButton__6EeWS {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
  font-size: 1rem;
  min-width: 120px;
}

.Home_primaryButton__eqY8U {
  background-color: #2563eb;
  color: white;
}

.Home_primaryButton__eqY8U:hover:not(:disabled) {
  background-color: #1d4ed8;
}

.Home_primaryButton__eqY8U:disabled {
  background-color: #93c5fd;
  cursor: not-allowed;
  opacity: 0.7;
}

.Home_secondaryButton__6EeWS {
  background-color: #e5e7eb;
  color: #374151;
}

.Home_secondaryButton__6EeWS:hover:not(:disabled) {
  background-color: #d1d5db;
}

.Home_secondaryButton__6EeWS:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Geofence Tester */
.Home_geofenceTesterContainer__0MsjZ {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  background-color: #16243d;
  border-radius: 0.5rem;
  border: 0px solid #3d3d3d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.Home_geofenceHelpText__jZWQ7 {
  margin: 0 0 0.75rem 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.4;
}
.Home_fenceInput__GOAJ1 {
  flex: 1 1;
  padding: 0.5rem;
  border: 1px solid #4a5568; /* Darker border for better contrast */
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 0.875rem;
  background-color: #16243d; /* Dark background */
  color: #e2e8f0; /* Light text color */
  transition: border-color 0.2s;
}

.Home_fenceInput__GOAJ1:focus {
  outline: none;
  border-color: #4299e1; /* Blue border on focus */
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

/* Dark theme for the load button */
.Home_loadButton__i1hGv {
  padding: 0 1.25rem;
  background-color: #2b6cb0; /* Darker blue */
  color: white;
  border: 1px solid #2c5282;
  border-radius: 0 0.375rem 0.375rem 0;
  cursor: pointer;
  transition: all 0.2s;
}

.Home_loadButton__i1hGv:not(:disabled):hover {
  background-color: #2c5282;
}

.Home_geofenceHelpText__jZWQ7 {
  margin: 0 0 0.75rem 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.Home_geofenceLink__oYui4 {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.Home_geofenceLink__oYui4:hover {
  color: #3b82f6;
  text-decoration: underline;
}




/* Responsive adjustments */
@media (max-width: 480px) {
  .Home_buttonRow__Nrj5f {
    flex-direction: column;
  }
  
  .Home_primaryButton__eqY8U,
  .Home_secondaryButton__6EeWS {
    width: 100%;
  }
}

/* Navigation Bar */
.Navbar_navBar__SFRzP {
  background-color: #4072b8;
  color: white;
  padding: 0.5rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 3000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.Navbar_navContainer__bLatB {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.Navbar_logoContainer__OcSOc {
  display: flex;
  align-items: center;
}

.Navbar_navLogo___L6zz {
  height: 40px;
  width: auto;
  transition: opacity 0.2s;
  margin-left: 0.5rem;
}

.Navbar_navLogo___L6zz:hover {
  opacity: 0.9;
}

.Navbar_navContent__U9nAb {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 0.5rem;
}

/* Auth Buttons */
.Navbar_authLinks__SmYPd {
  display: flex;
  gap: 0.75rem;
}

.Navbar_authButton__lQnHW {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.Navbar_authButton__lQnHW:hover {
  opacity: 0.9;
}

.Navbar_authButton__lQnHW:first-child {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.Navbar_authButton__lQnHW:first-child:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.Navbar_signUpButton__fGPxN {
  background-color: #fff;
  color: #1a237e;
}

.Navbar_signUpButton__fGPxN:hover {
  background-color: #f5f5f5;
}

/* User Menu */
.Navbar_userMenu___fQne {
  position: relative;
}

.Navbar_userButton__puFie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.Navbar_userButton__puFie:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.Navbar_userEmail__VjW49 {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Navbar_menuArrow__aWjID {
  font-size: 0.6rem;
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

.Navbar_userButton__puFie:hover .Navbar_menuArrow__aWjID {
  transform: translateY(1px);
}

.Navbar_dropdownMenu__rJ7aZ {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  overflow: hidden;
  z-index: 1000;
  animation: Navbar_fadeIn__M94IV 0.15s ease-out;
}

.Navbar_dropdownItem__fQJUN {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 1px 21px 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: background-color 0.2s;
}

.Navbar_dropdownItem__fQJUN:hover {
  background-color: #1d4ed8;
}

@keyframes Navbar_fadeIn__M94IV {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .Navbar_navContainer__bLatB {
    padding: 0.5rem 1rem;
  }
  
  .Navbar_navContent__U9nAb {
    gap: 1rem;
  }
  
  .Navbar_authLinks__SmYPd {
    gap: 0.5rem;
  }
  
  .Navbar_authButton__lQnHW {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .Navbar_userEmail__VjW49 {
    max-width: 100px;
  }
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html,
body {
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0f172a;
}

/* Ensure all text elements use Inter */
body, button, input, textarea, select, h1, h2, h3, h4, h5, h6, p, a, span, div {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

/* Leaflet map container fix */
.leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  z-index: 1;
  background-color: #1a1a1a !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
/* Dark theme for map tiles */
/* Ensure tiles are properly sized */
.leaflet-tile {
  position: absolute;
  left: 0;
  top: 0;
  width: 256px !important;
  height: 256px !important;
  pointer-events: none;
  filter: brightness(0.6) invert(1) contrast(4) hue-rotate(200deg) saturate(0.6) brightness(0.6) !important;
  will-change: transform;
}
/* Utility classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

/* Form styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Toast notifications */
.Toastify__toast {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

/* Form elements */
input, button, textarea, select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

