.dropdown-menu {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.dropdown-menu .dropdown-item {
    color: white;
    background-color: transparent !important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white;
}

@media (max-width: 767.98px) {
    .dropdown-menu .dropdown-item {
        color: #333 !important;
        font-size: 0.9rem !important;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.05) !important;
        color: #000 !important;
    }
}

.equal-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.clickable-image {
    cursor: pointer;
}

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}