.Spinner-module__spinner--m6c6i {
    display: block;
    /* Ensure spinner is visible initially */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    border-top: 5px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: Spinner-module__spin--jw5xq 2s linear infinite;
}

@keyframes Spinner-module__spin--jw5xq {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.ErrorPage-module__errorContainer--WFRBD {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff0f0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  min-height: 100vh;
  width: 100vw;
}

.ErrorPage-module__errorTitle--pdvJE {
  color: #d32f2f;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ErrorPage-module__errorMessage--VayPL {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.ErrorPage-module__errorCode--DTkCh {
  color: #b71c1c;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ErrorPage-module__errorDetails--VEb9h {
  color: #555;
  background: #fff8f8;
  border: 1px solid #f8d7da;
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.95rem;
  max-width: 600px;
  overflow-x: auto;
}

.app-module__appTitle--NMt7M {
    margin: 0;
    padding: 0.4rem;
    font-weight: bold;
    color: white;
    font-size: 2.4rem;
    letter-spacing: 0.03rem;
    text-align: center;
    background-color: #0d8390;
}

.app-module__inputFields--j1lm0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 4rem 1rem;
    
    .app-module__ietIndicator--pVOZh {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    select {
        padding: 0.4rem;
        outline: none;
    }
}

label {
    font-size: 1.2em;
}

button.app-module__csrAppNav--hoBPd {
    background-color: #0D8390;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    padding: 0.4rem 0.8rem 0.6rem 0.8rem;
    border: 1px solid #0d8390;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.app-module__dataRetrieve--aUiQU {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-left: 1rem;

    .app-module__retrieveTextbox--VB43v {
        padding: 0.4rem;
        border: none;
        font-size: 1rem;
        outline: none;
        width: 30rem;
        height: 6rem;
    }   
}


body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    max-width: 100vw;
    max-height: 100vh;
}

