body {
    background-color: #ffffff;
}

     /* Mobile dropdown menu positioning */
@media (max-width: 768px) {
    .dropdown-menu-mobile {
        position: fixed !important;
        inset: auto 0px 0px 0px !important;
        margin: 0 !important;
        width: 100%;
        border-radius: 1rem 1rem 0 0 !important;
        transform: translate3d(0, 0, 0) !important;
        z-index: 1045;
        border-width: 1px 0 0 0 !important;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1) !important;
        animation: slideUp 0.3s ease;
    }

    .dropdown-menu-mobile:after {
        content: '';
        height: 100vh;
        width: 100%;
        position: fixed;
        top: -100vh;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        pointer-events: none;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
}

/* Swipeable modal styling */
.swipeable-modal .modal-dialog.bottom-sheet {
    margin-top: auto;
    margin-bottom: 0;
}

.swipeable-modal .modal-content {
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.swipeable-modal .swipe-handle {
    height: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.swipeable-modal .swipe-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: #e7e7e7;
}

.profile-section a:hover .d-flex {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    transition: background-color 0.2s ease;
}

.profile-section .text-danger:hover {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

@media (min-width: 768px) {
    .swipeable-modal .modal-dialog {
        max-width: 500px;
    }
}

/* SPA Order History Styles */
.orders-btn {
    cursor: pointer;
}

.orders-btn:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    transition: background-color 0.2s ease;
}

.order-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1) !important;
}

.back-to-profile, .back-to-orders {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.month-title {
    font-weight: 600;
    color: #333;
}