/* Fix dropdown menu on narrow screens to prevent overflow */
.card-body .dropdown {
    position: relative;
}

.card-body .dropdown-menu {
    max-width: calc(100vw - 2rem);
    right: 0 !important;
    left: auto !important;
    margin-top: 0.25rem;
}

/* Remove underline from hamburger menu button */
.card-body .dropdown button.btn-link {
    text-decoration: none !important;
}

.card-body .dropdown button.btn-link:hover {
    text-decoration: none !important;
}

@media (max-width: 576px) {
    /* On very small screens, ensure menu is fully visible */
    .card-body .dropdown-menu {
        right: 0 !important;
        left: auto !important;
        min-width: 120px;
        white-space: nowrap;
    }
    
    /* If menu would overflow, position it to the left */
    .card-body .position-relative {
        overflow: visible;
    }
}

