
@media (min-width: 1024px) {
    .content {
        margin-top: 10%;
        margin-left: 4%;
        margin-right: 4%;
    }
}

@media (max-width: 1024px) {
    .content {
        margin-bottom: 10%;
    }
}
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #f9f9f9; */
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content label {
    display: block;
    padding: 8px;
    cursor: pointer;
    text-align: left;
}

.dropdown-content label:hover {
    background-color: #f1f1f1;
}

.iti__country-name, .iti__flag-box {
    color: black !important;
}

.dropdown-content input {
    margin-right: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Fix text color */
body, input, button, label {
    color: black;
}

/* New styles for Choices.js dropdown */
.choices__list--dropdown .choices__item {
    color: black;
    background-color: white;
}

/* New styles for selected Choices.js item */
.choices__list--multiple .choices__item,
.choices__item {
    background-color: #f68944;
    color: black;
      
}

.choices__item--selectable.is-selected {
    background-color: #f68944;
    color: white;
    border: none;
}

.choices__item--selectable.is-highlighted{
    color: black;
}


.choices__button{
    border:none !important
}

label {
    text-align: left;
}

/* Hover effect for CTA button */
button {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    color: black !important; /* Change text color to black */
}

button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
    transform: scale(1.001); /* Magnify */
}

/* Minimized header height */
header {
    padding-top: 0px; /* Minimized top padding */
    margin-bottom: -20px; /* Minimized bottom padding */
}

/* Loader styles */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #f68944;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    color: black;
    font-size: 0.9rem; /* Tailwind's text-sm */
    font-weight: bold;
    margin-top: 0.5rem !important; /* Tailwind's mt-1 */
}