body {
  font-family: 'DM Sans', sans-serif;
  color: #282828;
  background-color: #F0EEE8;
}

.header-bg {
    background-color: #f6f5f4;
}

.btn-primary, .btn-black, .btn-outline-primary {
    background-color: #000 !important;
    color: #fff !important;
    padding: 13px 24px;
    align-items: center;
    gap: 16px;
    border: none;
    border-radius: 0 !important;
    transition: color 0.3s;
    background-size: 200% 100%; 
    background-position: left; 
    font-size: 14px;
    line-height: 150%;
}

.btn-outline-dark {
     border-radius: 0 !important;
}


.btn-primary img, .btn-black img {
    height: 16px;
    margin-left: 10px;
}
.btn-primary .user-icon, .btn-black .user-icon {
    width: 24px;
    height: 24px;
    margin-right: 24px;
}

.btn-danger {
    padding: 13px 24px;
    font-size: 14px;
    line-height: 150%;
    border-radius: 0px;
}

.btn-primary:hover, .btn-black:hover, .btn:hover, .dropdown-item.active, .dropdown-item:active {
    color: #000 !important;
    background: linear-gradient(90deg, #e5b64e, #f2d169, #ebc151, #f2d169, #e5b64e);
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover img, .btn-black:hover img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(73%) saturate(583%) hue-rotate(1deg) brightness(102%) contrast(101%);
}

.gaps {
    gap: 16px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

@media (max-width: 991px) {
    .gaps {
    gap: 0px;
}
.header-btn {
   align-items: start !important;
   gap: 16px
}


}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.navbar {
    padding: 16px 0;
}


  .nav-link    {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

  .nav-link:hover    {
    color: #eaaf2d;
}

.orders-container {
    display: flex;               
    gap: 20px;
    overflow-x: auto;           
    padding-bottom: 10px;      
    scroll-behavior: smooth;    
}

.orders-container::-webkit-scrollbar {
    height: 6px;                 /* Thin scrollbar */
}
.orders-container::-webkit-scrollbar-thumb {
    background: goldenrod;       /* Scrollbar color */
    border-radius: 3px;
}
.orders-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.order-card {
    min-width: 300px;            /* Keep card width */
    flex: 0 0 auto;              /* Do not shrink or grow */
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.order-card:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Keep other styles as before */
.order-header { display: flex; align-items: center; justify-content: space-between; }
.order-header h3 { margin: 0; font-size: 18px; font-weight: 600; color: #111; }
.order-status { font-size: 14px; font-weight: 600; padding: 6px 12px; border-radius: 6px; display: inline-flex; align-items: center; gap: 6px; }
.status-pending { background: #fff3cd; color: #856404; }
.status-active { background: #d4edda; color: #155724; }
.status-expired { background: #f8d7da; color: #721c24; }
.status-review { background: #e2e3e5; color: #6c757d; }
.order-body { margin-top: 12px; font-size: 14px; color: #555; }
.order-actions { margin-top: 15px; display: flex; justify-content: space-between; gap: 10px; }
.btn-pay, .btn-view { padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; cursor: pointer; transition: 0.2s; }
.btn-pay { background: black; color: white; }
.btn-pay:hover { background: goldenrod; color: #fff; }
.btn-view { background: #f0f0f0; color: #111; }
.btn-view:hover { background: #ddd; }

.form-control {
    border-radius: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #BCBCBC;
    border-right: 1px solid #BCBCBC !important;
}

