:root {
   --width: 720px;
}

.no-decoration{
    text-decoration: none;
    color: #333;
}
body {
   
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh; /* Ensure the body has at least the full viewport height */
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #e0e0e0;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}
header span {
    margin: 0;
    text-align: right;
    font-size: 1eme;
}

.container {
    width: 100%;
    max-width: var(--width);
    margin: 0 auto;
   /* padding: 20px;
    text-align: center;*/
    flex-grow: 1; /* This allows the container to grow and fill available space */
    min-height: calc(100vh - 130px); /* Minus the header and footer height */
}
.center {
    text-align: center;
}
.search{
    text-align: center;
    width: fit-content;
    max-width: var(--width);
    margin: 0 auto;
    padding: 20px;
    flex-grow: 1; 
}

footer {
   
    text-align: center;
    padding: 20px 0;
    background: #ddd;
}
footer .disclaimer {
    width: fit-content;
    max-width: var(--width);
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
    font-size: 0.9em;

}


.dropdown {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="%23000" viewBox="0 0 24 24" width="24" height="24"><path d="M7 10l5 5 5-5H7z"/></svg>') no-repeat right 0.75rem center;
    background-size: 1.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 20px;
    width: 100%;
}

label, select {
    display: inline-block;
    vertical-align: middle; /* Aligns items vertically in the middle */
  }
  
  label {
    margin-right: 10px; /* Adds space between label and select */
  }
  
  select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: white;
  }
.ifsc-search{
    display: inline-block;
}
  /* Basic button */
button {
    background: #333;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 18px;
}
button:hover {
    background: #0056b3;
}
input[type="text"] {
    /* Basic styling */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    max-width: 250px;
    box-sizing: border-box;
    outline: none;
    
    /* Placeholder text */
    &::placeholder {
        color: #aaa;
        opacity: 1; /* Firefox */
    }
    
    /* Focus state */
    &:focus {
        border-color: #007BFF;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }
}
.error
{
 border:1px solid red;
}
#error{
    color: red;
}