#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    display: none; /* Initially hidden */
    z-index: 9999; /* High z-index to ensure it covers other content */
}

/* Centering the spinner */
#spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the spinner */
}

  .messages {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;  
    width: 80%;  
    max-width: 500px;  
    text-align: center;
    padding: 0px;
    
}
 
.alert {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.message-text {
    font-weight: 500;
}

.btn-close {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
}


.custom-select {
    
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    height: 44px;
}

/* Apply background color to odd options */
.custom-select option:nth-child(odd) {
    background-color: #ECECEC;
}

/* Apply background color to even options */
.custom-select option:nth-child(even) {
    background-color: #FFFFFF;
}

/* Additional styling to ensure the background colors are visible */
.custom-select option {
    padding: 5px;
}
.custom-frame {
            border: 1px solid #b5c1ca;
            padding: 20px;
            border-radius: 8px;
            margin: 10px;
            
        }

        .inRow { 
            display: flex;
            align-items: center;
              gap: 15px;}


              