@font-face {
    font-family: 'Iranyekan';
    src: url('../fonts/Qs_Iranyekan_medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Iranyekan', sans-serif;
}

.blueprint-container {
    height: calc(100vh - 79px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Images/neoki839247-hexagon-5552082_1920.png');
    background-color: #141629;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.context-menu {
    min-width: 160px;
    border: 1px solid #e0e0e0;
}

.context-menu-item {
    cursor: pointer;
    border-radius: 6px;
}

    .context-menu-item:hover {
        background-color: #f0f0f0;
    }


.product-card {
    width: 320px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: #f8f8f8;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-original {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
}

.badge-out {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
}

.product-info {
    padding: 14px 16px 16px;
}

.product-name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.product-price {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .btn-add-cart:hover {
        background: #ed8936;
    }

.btn-disabled {
    background: #f0f0f0 !important;
    color: #aaa !important;
    cursor: not-allowed !important;
}



.cart-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

.cart-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid #f5f5f5;
}

.item-img {
    width: 72px;
    height: 72px;
    background: #f8f8f8;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 3px;
    color: #1a1a1a;
}

.item-price {
    font-size: 13px;
    color: #888;
    margin: 0 0 10px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qty-btn:hover {
        background: #f5f5f5;
    }

.qty-val {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.item-total {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.del-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
}

    .del-btn:hover {
        color: #e53e3e;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

    .summary-row span:last-child {
        color: #1a1a1a;
    }

.free-badge {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: #666;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #0055DA;
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.15s;
}

    .checkout-btn:hover {
        background: #3874FF;
    }

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}






.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: start;
}

.checkout-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 16px;
}

.checkout-btn {
    width: 100%;
    padding: 13px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .checkout-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .checkout-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.summary-img {
    width: 44px;
    height: 44px;
    background: #f8f8f8;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.free-badge {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-paid {
    background: #d1fae5;
    color: #065f46;
}

.status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.status-shipped {
    background: #ede9fe;
    color: #5b21b6;
}

.status-delivered {
    background: #dcfce7;
    color: #166534;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.custom-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    width: 560px;
    max-width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    direction: rtl;
}




.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.main-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f8f8;
}

.main-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.badge-original {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.badge-out {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s;
}

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.thumb-active {
    border-color: #F6AD55;
}

.thumb:hover {
    border-color: #ed8936;
}

.brand-badge {
    background: #f0f9ff;
    color: #0369a1;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 8px 0 4px;
}

.category-text {
    font-size: 13px;
    color: #888;
}

.price-label {
    font-size: 13px;
    color: #888;
    margin: 0 0 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 500;
    color: #d97706;
    margin: 0;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.stock-ok {
    background: #dcfce7;
    color: #166534;
}

.stock-low {
    background: #fef3c7;
    color: #92400e;
}

.stock-out {
    background: #fee2e2;
    color: #991b1b;
}

.field-label {
    font-size: 13px;
    color: #888;
    margin: 0 0 8px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .qty-btn:hover {
        background: #f5f5f5;
    }

.qty-val {
    font-size: 16px;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .add-to-cart-btn:hover:not(:disabled) {
        background: #ed8936;
    }

.btn-disabled {
    background: #f0f0f0 !important;
    color: #aaa !important;
    cursor: not-allowed !important;
}

.details-grid {
    grid-template-columns: 1fr;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 12px;
}

.detail-icon {
    font-size: 20px;
    color: #F6AD55;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-label {
    font-size: 12px;
    color: #888;
    margin: 0 0 2px;
}

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

/* ── Comments ── */
.comments-section {
    max-width: 800px;

}

.comments-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.comments-count {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 2px 10px;
    margin-right: 10px;
}

.comment-form-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.star-row {
    display: flex;
    align-items: center;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    font-size: 22px;
    color: #ddd;
    transition: color 0.1s;
}

    .star-btn:hover,
    .star-active {
        color: #F6AD55;
    }

.clear-rating {
    background: none;
    border: none;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    margin-right: 8px;
    text-decoration: underline;
}

.submit-comment-btn {
    padding: 10px 24px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.15s;
}

    .submit-comment-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .submit-comment-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.already-commented {
    display: flex;
    align-items: center;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #166534;
    margin-bottom: 1.5rem;
}

.login-to-comment {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 1.5rem;
}

.comment-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 12px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef3c7;
    color: #92400e;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-username {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #1a1a1a;
}

.comment-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.comment-stars {
    display: flex;
    gap: 2px;
    margin-right: auto;
}

.comment-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .main-image {
        height: 300px;
    }

    .login-to-comment {
        flex-wrap: wrap;
    }
}


.status-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    border-bottom: 1px solid #eee;
}

.status-item {
    position: relative;
    color: #666;
    text-decoration: none;
    padding: 5px 15px;
}

    .status-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 0;
        height: 3px;
        background: #0055DA;
        border-radius: 5px;
        transition: width .3s ease;
    }

    .status-item:hover::after {
        width: 100%;
    }

    .status-item.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 3px;
        background: #0055DA;
        border-radius: 5px;
    }

.badge-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    border-radius: 10px;
    background: #0055DA;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

    .badge-count.gray {
        background: #0055DA;
    }





.comment-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-right: 4px solid #fbbf24;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef3c7;
    color: #92400e;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.username {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.meta {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.pending-badge {
    display: inline-flex;
    align-items: center;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.comment-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 1rem;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
}

.actions {
    display: flex;
    gap: 10px;
}

.btn-approve {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-approve:hover:not(:disabled) {
        background: #bbf7d0;
    }

.btn-delete {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-delete:hover:not(:disabled) {
        background: #fecaca;
    }

    .btn-approve:disabled,
    .btn-delete:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
        .user-panel-layout {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 24px;
        align-items: start;
    }

    .panel-sidebar {
        position: sticky;
        top: 20px;
    }

    .user-info-card {
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        margin-bottom: 12px;
    }

    .user-avatar-lg {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #fef3c7;
        color: #92400e;
        font-size: 24px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
    }

    .user-name {
        font-size: 15px;
        font-weight: 500;
        color: #1a1a1a;
        margin: 0 0 4px;
    }

    .user-email {
        font-size: 12px;
        color: #888;
        margin: 0;
    }

    .panel-nav {
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 8px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .panel-nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 14px;
        color: #444;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
        border: none;
        background: none;
        width: 100%;
        cursor: pointer;
        text-align: right;
    }

        .panel-nav-item i {
            font-size: 18px;
        }

        .panel-nav-item:hover {
            background: #f9f9f9;
            color: #1a1a1a;
        }

        .panel-nav-item.active {
            background: #fef3c7;
            color: #92400e;
            font-weight: 500;
        }

            .panel-nav-item.active i {
                color: #F6AD55;
            }

    .signout-btn {
        color: #991b1b !important;
    }

        .signout-btn:hover {
            background: #fee2e2 !important;
        }

    .nav-divider {
        border: none;
        border-top: 1px solid #f0f0f0;
        margin: 4px 0;
    }

    .panel-content {
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 1.5rem;
        min-height: 500px;
    }

    @media (max-width: 768px) {
        .user-panel-layout {
            grid-template-columns: 1fr;
        }

        .panel-sidebar {
            position: static;
        }
    }



.user-panel-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

.panel-sidebar {
    position: sticky;
    top: 20px;
}

.user-info-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 12px;
}

.user-avatar-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fef3c7;
    color: #92400e;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.user-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.user-email {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.panel-nav {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    text-align: right;
}

    .panel-nav-item i {
        font-size: 18px;
    }

    .panel-nav-item:hover {
        background: #f9f9f9;
        color: #1a1a1a;
    }

    .panel-nav-item.active {
        background: #fef3c7;
        color: #92400e;
        font-weight: 500;
    }

        .panel-nav-item.active i {
            color: #F6AD55;
        }

.signout-btn {
    color: #991b1b !important;
}

    .signout-btn:hover {
        background: #fee2e2 !important;
    }

.nav-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 4px 0;
}

.panel-content {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 500px;
}

@media (max-width: 768px) {
    .user-panel-layout {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        position: static;
    }
}






.page-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.order-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.order-id {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 3px;
}

.order-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.order-total {
    font-size: 15px;
    font-weight: 500;
    color: #d97706;
}

.status-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-paid {
    background: #d1fae5;
    color: #065f46;
}

.status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.status-shipped {
    background: #ede9fe;
    color: #5b21b6;
}

.status-delivered {
    background: #dcfce7;
    color: #166534;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.order-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.item-pill {
    background: #f5f5f5;
    color: #444;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight:600;
}

.more-pill {
    background: #fef3c7;
    color: #92400e;
}

.shipping-info {
    font-size: 13px;
    color: #888;
}

.page-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.comment-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: 20px;
}

.approved {
    background: #dcfce7;
    color: #166534;
}

.pending {
    background: #fef3c7;
    color: #92400e;
}

.comment-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin: 0;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 8px;
}



.page-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.section-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.25rem;
}

.section-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.save-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .save-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .save-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }




.profile-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
}

.avatar-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: sticky;
    top: 20px;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fef3c7;
    color: #92400e;
    font-size: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.avatar-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.avatar-email {
    font-size: 12px;
    color: #888;
    margin: 0 0 4px;
    word-break: break-all;
}

.avatar-phone {
    font-size: 12px;
    color: #888;
    margin: 0 0 12px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
}

.section-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.section-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.save-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .save-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .save-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .avatar-card {
        position: static;
    }
}






.create-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
}

.step-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-badge.active {
        border-color: #F6AD55;
        background: #fef3c7;
        color: #92400e;
    }

    .step-badge.done {
        border-color: #48bb78;
        background: #dcfce7;
        color: #166534;
    }

.step-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.step-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .action-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .action-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.role-option {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

    .role-option:hover {
        border-color: #F6AD55;
        background: #fffbeb;
    }

    .role-option.role-active {
        border-color: #F6AD55;
        background: #fef3c7;
    }

.role-icon {
    font-size: 24px;
    color: #F6AD55;
    margin-bottom: 8px;
}

.role-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.role-desc {
    font-size: 12px;
    color: #888;
    margin: 0;
}












.service-form-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
}

.section-label {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.category-option {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

    .category-option:hover {
        border-color: #F6AD55;
        background: #fffbeb;
    }

.category-active {
    border-color: #F6AD55 !important;
    background: #fef3c7 !important;
    color: #92400e !important;
    font-weight: 500;
}

.category-icon {
    font-size: 22px;
    color: #F6AD55;
}

.service-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-type-option {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    text-align: center;
}

    .service-type-option:hover {
        border-color: #F6AD55;
        background: #fffbeb;
    }

.type-active {
    border-color: #F6AD55 !important;
    background: #fef3c7 !important;
}

.type-icon {
    font-size: 28px;
    color: #F6AD55;
    margin-bottom: 8px;
}

.type-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.type-desc {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .submit-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }






.page-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

    .action-btn:hover {
        background: #ed8936;
        color: #7c4700;
    }

.request-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem;
}

.request-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.device-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.request-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.category-pill {
    background: #f0f9ff;
    color: #0369a1;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
}

.type-pill {
    background: #f5f5f5;
    color: #444;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
}

.date-text {
    font-size: 12px;
    color: #888;
}

.status-badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.step-done {
    border-color: #48bb78;
    background: #dcfce7;
    color: #166534;
}

.step-current {
    border-color: #F6AD55;
    background: #fef3c7;
    color: #92400e;
}

.step-label {
    font-size: 10px;
    color: #aaa;
    margin: 0;
    white-space: nowrap;
}

.step-label-active {
    color: #92400e;
    font-weight: 500;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 16px;
    min-width: 20px;
}

.line-done {
    background: #48bb78;
}

/* Quote Box */
.quote-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.quote-label {
    font-size: 12px;
    color: #888;
    margin: 0 0 2px;
}

.quote-price {
    font-size: 18px;
    font-weight: 500;
    color: #d97706;
    margin: 0 0 4px;
}

.quote-notes {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.btn-approve-quote {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-approve-quote:hover {
        background: #bbf7d0;
    }

.btn-reject-quote {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-reject-quote:hover {
        background: #fecaca;
    }

.request-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 8px;
}

/* Status colors */
.s-pending {
    background: #f5f5f5;
    color: #666;
}

.s-received {
    background: #dbeafe;
    color: #1e40af;
}

.s-diagnosing {
    background: #ede9fe;
    color: #5b21b6;
}

.s-waiting {
    background: #fef3c7;
    color: #92400e;
}

.s-approved {
    background: #d1fae5;
    color: #065f46;
}

.s-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.s-repairing {
    background: #ffedd5;
    color: #9a3412;
}

.s-repaired {
    background: #dcfce7;
    color: #166534;
}

.s-delivered {
    background: #dcfce7;
    color: #14532d;
}

.s-cancelled {
    background: #fee2e2;
    color: #7f1d1d;
}






.request-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.15s;
}

.card-expanded {
    border-color: #F6AD55;
}

.device-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.customer-info {
    font-size: 12px;
    color: #888;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.address-text {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.category-pill {
    background: #f0f9ff;
    color: #0369a1;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
}

.type-pill {
    background: #f5f5f5;
    color: #444;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
}

.status-badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.request-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 8px;
}

.update-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.update-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: #F6AD55;
    border: none;
    border-radius: 50px;
    color: #7c4700;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .update-btn:hover:not(:disabled) {
        background: #ed8936;
    }

    .update-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.s-pending {
    background: #f5f5f5;
    color: #666;
}

.s-received {
    background: #dbeafe;
    color: #1e40af;
}

.s-diagnosing {
    background: #ede9fe;
    color: #5b21b6;
}

.s-waiting {
    background: #fef3c7;
    color: #92400e;
}

.s-approved {
    background: #d1fae5;
    color: #065f46;
}

.s-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.s-repairing {
    background: #ffedd5;
    color: #9a3412;
}

.s-repaired {
    background: #dcfce7;
    color: #166534;
}

.s-delivered {
    background: #dcfce7;
    color: #14532d;
}

.s-cancelled {
    background: #fee2e2;
    color: #7f1d1d;
}







.toast-item {
    min-width: 260px;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 14px;
    animation: toast-in 0.25s ease-out;
}

.toast-success {
    background-color: #00C68D;
}

.toast-error {
    background-color: #E53E3E;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.8;
}

    .toast-close:hover {
        opacity: 1;
    }

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}





.page-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.detail-card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    background: white;
}

.section-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.progress-steps {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.step-done {
    border-color: #48bb78;
    background: #dcfce7;
    color: #166534;
}

.step-current {
    border-color: #F6AD55;
    background: #fef3c7;
    color: #92400e;
}

.step-label {
    font-size: 10px;
    color: #aaa;
    margin: 0;
    white-space: nowrap;
}

.step-label-active {
    color: #92400e;
    font-weight: 500;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 16px;
    min-width: 20px;
}

.line-done {
    background: #48bb78;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 10px 14px;
}

.info-label {
    font-size: 11px;
    color: #888;
    margin: 0 0 4px;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.desc-box {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    background: #fafafa;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 0;
}

.quote-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 16px;
    margin-top: 16px;
}

.quote-label {
    font-size: 12px;
    color: #888;
    margin: 0 0 4px;
}

.quote-price {
    font-size: 22px;
    font-weight: 500;
    color: #d97706;
    margin: 0 0 6px;
}

.quote-notes {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.btn-approve-quote {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-approve-quote:hover:not(:disabled) {
        background: #bbf7d0;
    }

.btn-reject-quote {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-reject-quote:hover:not(:disabled) {
        background: #fecaca;
    }

    .btn-approve-quote:disabled,
    .btn-reject-quote:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.info-box {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-top: 16px;
}

.info-rejected {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.s-pending {
    background: #f5f5f5;
    color: #666;
}

.s-received {
    background: #dbeafe;
    color: #1e40af;
}

.s-diagnosing {
    background: #ede9fe;
    color: #5b21b6;
}

.s-waiting {
    background: #fef3c7;
    color: #92400e;
}

.s-approved {
    background: #d1fae5;
    color: #065f46;
}

.s-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.s-repairing {
    background: #ffedd5;
    color: #9a3412;
}

.s-repaired {
    background: #dcfce7;
    color: #166534;
}

.s-delivered {
    background: #dcfce7;
    color: #14532d;
}

.s-cancelled {
    background: #fee2e2;
    color: #7f1d1d;
}





.page-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.detail-card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    background: white;
}

.section-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.progress-steps {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 4px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.step-done {
    border-color: #48bb78;
    background: #dcfce7;
    color: #166534;
}

.step-current {
    border-color: #F6AD55;
    background: #fef3c7;
    color: #92400e;
}

.step-label {
    font-size: 10px;
    color: #aaa;
    margin: 0;
    white-space: nowrap;
}

.step-label-active {
    color: #92400e;
    font-weight: 500;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 16px;
    min-width: 20px;
}

.line-done {
    background: #48bb78;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 10px 14px;
}

.info-label {
    font-size: 11px;
    color: #888;
    margin: 0 0 4px;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.order-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fafafa;
    border-radius: 8px;
    gap: 12px;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 3px;
}

.item-unit {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.item-total {
    font-size: 14px;
    font-weight: 500;
    color: #d97706;
    white-space: nowrap;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fffbeb;
    border-radius: 8px;
    border: 1px solid #fde68a;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-paid {
    background: #d1fae5;
    color: #065f46;
}

.status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.status-shipped {
    background: #ede9fe;
    color: #5b21b6;
}

.status-delivered {
    background: #dcfce7;
    color: #166534;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}











.upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #0d6efd;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

    .upload-button:hover {
        background-color: #0b5ed7;
    }