.product-view-img{
    width: 30rem;
}
.deleted-product-img{
    width: 5rem;
}
.copy-btn{
    width: 2rem;
    height: 2rem;
}



/* Dashboard Page */

 .dashboard-card {
            transition: transform 0.2s ease-in-out;
        }
        .dashboard-card:hover {
            transform: translateY(-2px);
        }
        .quick-stats {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 10px;
        }
        .recent-activity {
            max-height: 400px;
            overflow-y: auto;
        }
        .activity-item {
            border-left: 3px solid #4e73df;
            padding-left: 15px;
            margin-bottom: 15px;
        }
        .activity-success {
            border-left-color: #1cc88a;
        }
        .activity-warning {
            border-left-color: #f6c23e;
        }
        .activity-danger {
            border-left-color: #e74a3b;
        }

/* All Products Page */

.Product-img{
    width: 5rem;
}

.table-container {
            overflow-x: auto;
            max-width: 100%;
        }
        .table th {
            white-space: nowrap;
        }
        .table td {
            vertical-align: middle;
        }
        .status-badge {
            padding: 0.2rem 0.5rem;
            margin-top: 0.1rem;
            border-radius: 0.35rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .keywords-cell {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .action{

            height: 8rem;
        }


        /* Add Product Page */

         .form-section {
            margin-bottom: 2rem;
        }
        .section-title {
            border-bottom: 2px solid #e3e6f0;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            color: #4e73df;
            font-weight: 600;
        }
        .required::after {
            content: " *";
            color: #e74a3b;
        }
        .info-icon {
            color: #4e73df;
            margin-left: 0.25rem;
        }
        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .checkbox-container input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }


        /* Deleted Products Page */


         .table-container {
            overflow-x: auto;
            max-width: 100%;
        }
        .table th {
            white-space: nowrap;
        }
        .table td {
            vertical-align: middle;
        }
        .status-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 0.35rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .status-deleted {
            background-color: #e74a3b;
            color: white;
        }
        .status-archived {
            background-color: #6c757d;
            color: white;
        }
        .keywords-cell {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .card-counter {
            font-size: 2rem;
            font-weight: bold;
            color: #4e73df;
        }
        .restore-btn {
            background-color: #1cc88a;
            border-color: #1cc88a;
        }
        .permanent-delete-btn {
            background-color: #e74a3b;
            border-color: #e74a3b;
        }

        /* All Oders Page */

        .table-container {
            overflow-x: auto;
            max-width: 100%;
        }
        .table th {
            white-space: nowrap;
            background-color: #f8f9fc;
        }
        .table td {
            vertical-align: middle;
        }
        .status-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 0.35rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .status-ordered {
            background-color: #1cc88a;
            color: white;
        }
        .status-deferred {
            background-color: #f6c23e;
            color: white;
        }
        .status-refunded {
            background-color: #e74a3b;
            color: white;
        }
        .status-completed {
            background-color: #36b9cc;
            color: white;
        }
        .email-cell {
            max-width: 180px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .order-number {
            font-weight: 600;
            color: #4e73df;
        }

        /* Paid Commission Page  */

        .table-container {
            overflow-x: auto;
            max-width: 100%;
        }
        .table th {
            white-space: nowrap;
            background-color: #f8f9fc;
        }
        .table td {
            vertical-align: middle;
        }
        .status-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 0.35rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .status-paid {
            background-color: #1cc88a;
            color: white;
        }
        .status-completed {
            background-color: #36b9cc;
            color: white;
        }
        .status-verified {
            background-color: #4e73df;
            color: white;
        }
        .status-reconciled {
            background-color: #6f42c1;
            color: white;
        }
        .order-number {
            font-weight: 600;
            color: #4e73df;
        }
        .card-counter {
            font-size: 2rem;
            font-weight: bold;
            color: #4e73df;
        }
        .commission-amount {
            font-weight: bold;
            color: #1cc88a;
        }
        .payment-date {
            font-weight: bold;
        }
        .payment-recent {
            color: #1cc88a;
        }
        .payment-old {
            color: #6c757d;
        }
        .payment-method {
            font-size: 0.75rem;
        }
        .transaction-id {
            font-family: monospace;
            font-size: 0.75rem;
            color: #6c757d;
        }