﻿@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

.search-container {
    background: linear-gradient(135deg, black, black);
    padding: 16px;
    border-radius: 18px;
    text-align: center;
    max-width: 1100px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
    transition: all 0.4s ease;
}

    .search-container::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 20px;
        background: linear-gradient(120deg, transparent, rgba(255, 0, 0, 0.4), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .search-container:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 50px rgba(255, 0, 0, 0.4);
    }

        .search-container:hover::before {
            opacity: 1;
            animation: glowMove 2s linear infinite;
        }

@keyframes glowMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.search-title {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.select-wrapper {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.custom-select {
    width: 100%;
    height: 30px!important;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;

    color: #000000 !important;
    background-color: #ffffff !important;

    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

    .custom-select:focus,
    .custom-select:active {
        color: #000000 !important;
        background-color: #ffffff !important;
        border-color: #bbb;
        box-shadow: none !important;
        outline: none !important;
    }

    .custom-select option {
        color: #000000 !important;
        background-color: #ffffff !important;
    }

    .custom-select:-webkit-autofill,
    .custom-select:-webkit-autofill:hover,
    .custom-select:-webkit-autofill:focus {
        -webkit-text-fill-color: #000000 !important;
        transition: background-color 5000s ease-in-out 0s;
    }

