/* Dropdown container styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button styling */
.dropdown button {
    background-color: #fff;
    color: #4F45E4;
    padding: 6px 20px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

/* Dropdown menu styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 120px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
}

/* Dropdown menu items */
.dropdown-content button {
    color: #333;
    padding: 8px 16px;
    text-align: left;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.dropdown-content button:hover {
    background-color: #f0f0f0;
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Test Rejimi texti uchun animatsiya */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}
