.text-orange-500 {
    color: var(--color-white, #f57309);
}

.bg-orange-500 {
    background-color: var(--color-white, #f57309);
}

.section1 {
    background-image: url('/media/images/bk.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
}

.section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for desired dimming */
}

/* Style The Dropdown (Submenu) */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(85, 87, 131, 0.8);
    min-width: 250px;
    padding: 10px;
    z-index: 1;
    border-radius: 0.5rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.dropdown:hover .dropdown-content {
    display: block;
}


#user-menu {
    width: 250px; /* Thu nhỏ chiều rộng menu */
    font-size: 14px; /* Giảm kích thước chữ */
    transition: all 0.3s ease-in-out;
    z-index: 50;
}

#user-menu-button img {
    width: 36px;  /* Thu nhỏ avatar */
    height: 36px;
    transition: transform 0.2s;
}

#user-menu-button:hover img {
    transform: scale(1.1);
}

#user-menu a {
    display: block;
    text-decoration: none;
}
