    /* Logo */
.header-logo {
    height: 55px;
    width: auto;
}

/* Menu spacing */
.menu_nav .nav-link {
    padding: 10px 18px;
    font-weight: 500;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Right contact */
.header-contact {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
}

.contact-item i {
    color: #c59d5f;
}

/* Responsive */
@media (max-width: 991px) {
    .header-contact {
        display: none !important;
    }

    .menu_nav {
        text-align: center;
    }
}

.userdash{
    margin-top: 20px;margin-bottom:100px
}

/* Common badge style */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
    color: #fff;
}

/* Status specific colors */
.badge-pending {
    background-color: #ffc107; /* yellow */
    color: #212529; /* dark text */
}

.badge-processing {
    background-color: #0d6efd; /* blue */
}

.badge-confirmed {
    background-color: #198754; /* green */
}

.badge-shipped {
    background-color: #0dcaf0; /* cyan */
    color: #212529;
}

.badge-delivered {
    background-color: #198754; /* green */
    color: #212529;
}

.badge-cancelled {
    background-color: #dc3545; /* red */
}

.badge-default {
    background-color: #6c757d; /* gray */
}
/* Add spacing between icon and text in sidebar links */
.list-group-item a i {
    margin-right: 8px; /* adjust as needed */
}