.smart-visa-requirements-finder-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    justify-content: space-between; /* Distribute items evenly */
}

.smart-visa-requirements-finder-container .form-field {
    flex: 1;
    min-width: 200px; /* Adjusted for better spacing */
}

.smart-visa-requirements-finder-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #4CAF50; /* Default Green color */
    font-size: 14px;
    text-transform: uppercase; /* Match screenshot style */
    letter-spacing: 0.5px;
}

.smart-visa-requirements-finder-container select {
    width: 100%;
    padding: 12px 15px; /* Increased padding */
    border: 1px solid #ADD8E6; /* Light blue border */
    border-radius: 25px; /* Rounded corners */
    background-color: #fff;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill=\"%234CAF50\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 10l5 5 5-5z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/></svg>"); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Inner shadow for depth */
}

.smart-visa-requirements-finder-container select:focus {
    outline: none;
    border-color: #5DADE2; /* Darker blue on focus */
    box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Combined shadow */
}

.smart-visa-requirements-finder-container button#svrf-redirect-submit {
    background-color: #5DADE2; /* Blue color from screenshot */
    color: white;
    padding: 12px 28px; /* Increased padding */
    border: none;
    border-radius: 25px; /* Rounded corners */
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Added transform for subtle animation */
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Button shadow */
}

.smart-visa-requirements-finder-container button#svrf-redirect-submit:hover {
    background-color: #4A90E2; /* Darker blue on hover */
    transform: translateY(-2px); /* Subtle lift effect */
}

.smart-visa-requirements-finder-container button#svrf-redirect-submit:active {
    transform: translateY(0); /* Press effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Smaller shadow on active */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .smart-visa-requirements-finder-container {
        flex-direction: column;
        align-items: stretch;
        padding: 15px; /* Slightly less padding on mobile */
    }

    .smart-visa-requirements-finder-container .form-field {
        min-width: unset;
        width: 100%;
    }

    .smart-visa-requirements-finder-container button#svrf-redirect-submit {
        width: 100%; /* Full width button on mobile */
        margin-top: 10px; /* Space above button */
    }
}



