/* Базові стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.6;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Header */
header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

/* Navigation Links */
nav ul li a {
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    overflow: hidden;
    display: flex;
    align-items: center;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover,
nav ul li a.active-link {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 1300px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

@media (max-width: 640px) {
    .container {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
}

/* Page */
.page {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .page {
        margin-top: 1.5rem;
        border-radius: 16px;
        padding: 1.5rem;
    }
}

.page.active {
    display: block;
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 420px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.product-card img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .product-card {
        min-height: 380px;
        padding: 1rem;
    }

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
    }
}

/* Product Card Elements */
.product-card h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .product-card h3 {
        font-size: 1rem;
    }
}

/* Product Description */
.product-description-wrapper {
    position: absolute;
    bottom: 60px;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4b5563;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 5;
    pointer-events: none;
}

.product-card:hover .product-description-wrapper {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .product-card:hover .product-description-wrapper {
        max-height: 100px;
        font-size: 0.85rem;
    }
}

/* Price Display */
.product-card .price-display {
    font-size: 1.8rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 0.8em;
    margin-right: 0.5rem;
}

.discount-badge {
    background-color: #ef4444;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Cart Badge */
#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
    animation: pulse 2s infinite;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

#cart-count.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes bump {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }
}

.cart-bump {
    animation: bump 0.3s ease-in-out;
}

/* Modern Buttons */
.primary-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-btn:hover::before {
    width: 300px;
    height: 300px;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Dialog Overlay */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dialog-show {
    display: flex;
    opacity: 1;
}

.dialog-content {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dialog-show .dialog-content {
    transform: scale(1);
}

@media (max-width: 640px) {
    .dialog-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* Edit Product Modal */
.edit-product-dialog .dialog-content {
    max-width: 95vw;
    width: 95vw;
    height: 95vh;
    max-height: 95vh;
    overflow-y: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.edit-product-form-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.edit-product-form-container::-webkit-scrollbar {
    width: 8px;
}

.edit-product-form-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.edit-product-form-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .edit-product-dialog .dialog-content {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        padding: 1rem;
    }
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
input[type="file"],
textarea,
select {
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Spinner */
#api-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Product Availability */
.product-availability {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-top: 0.5rem;
}

.product-availability.in-stock {
    background-color: #d1fae5;
    color: #065f46;
}

.product-availability.out-of-stock {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Out of Stock Items */
.product-card.out-of-stock-item {
    opacity: 0.6;
    filter: grayscale(50%);
    pointer-events: none;
    order: 1;
}

.product-card.out-of-stock-item .add-to-cart-circle-btn {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Admin Product Item */
.admin-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.admin-product-item:last-child {
    margin-bottom: 0;
}

.admin-product-item .product-details {
    flex-grow: 1;
    margin-right: 1rem;
    min-width: 120px;
}

.admin-product-item .product-details .name {
    font-weight: 600;
    color: #1f2937;
}

.admin-product-item .product-details .price {
    font-size: 0.9rem;
    color: #059669;
}

.admin-product-item .product-details .id {
    font-size: 0.75rem;
    color: #6b7280;
}

.admin-product-item .controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .admin-product-item .controls {
        gap: 0.5rem;
    }
}

.admin-product-item .controls input[type="number"] {
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    font-size: 0.9rem;
    width: 70px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

@media (max-width: 640px) {
    .admin-product-item .controls input[type="number"] {
        width: 60px;
        padding: 0.3rem 0.5rem;
    }
}

.admin-product-item .controls input[type="number"]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    outline: none;
}

/* Control Buttons */
.admin-product-item .controls button {
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.admin-product-item .controls .edit-btn {
    background-color: #f59e0b;
    color: white;
    box-shadow: 0 3px 0 #d97706;
}

.admin-product-item .controls .edit-btn:hover {
    background-color: #d97706;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #b45309;
}

.admin-product-item .controls .delete-admin-btn {
    background-color: #ef4444;
    color: white;
    box-shadow: 0 3px 0 #dc2626;
}

.admin-product-item .controls .delete-admin-btn:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #b91c1c;
}

.admin-product-item .controls .notify-btn {
    background-color: #10b981;
    color: white;
    box-shadow: 0 3px 0 #059669;
}

.admin-product-item .controls .notify-btn:hover {
    background-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #047857;
}

@media (max-width: 640px) {
    .admin-product-item .controls button {
        min-width: 32px;
        min-height: 32px;
    }

    .admin-product-item .controls .delete-btn,
    .admin-product-item .controls .notify-btn,
    .admin-product-item .controls .edit-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

/* Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Category Filter Buttons */
.category-filter-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.category-filter-btn.inactive {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #4a5568;
}

.category-filter-btn.inactive:hover {
    background: linear-gradient(135deg, #cbd5e1 0%, #a0aec0 100%);
    color: #2d3748;
}

.category-filter-btn.active-category {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

.category-filter-btn.active-category:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

/* Scroll Buttons */
#scroll-left-btn,
#scroll-right-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border: 1px solid #e2e8f0;
}

#scroll-left-btn:hover,
#scroll-right-btn:hover {
    background-color: #f0f4f8;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#scroll-left-btn svg,
#scroll-right-btn svg {
    color: #4a5568;
    width: 20px;
    height: 20px;
}

#category-buttons-container {
    padding: 0 10px;
    margin: 0 -10px;
}

/* Flying Item Animation */
.flying-item {
    position: fixed;
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
    opacity: 1;
    width: 50px;
    height: 50px;
    object-fit: cover;
    pointer-events: none;
}

/* Add to Cart Circle Button */
.add-to-cart-circle-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    z-index: 10;
}

.add-to-cart-circle-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

.add-to-cart-circle-btn:active {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.4);
}

.add-to-cart-circle-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

@media (max-width: 640px) {
    .add-to-cart-circle-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        bottom: 0.75rem;
        right: 0.75rem;
    }
}

/* Reports */
.report-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.report-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #cbd5e1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.profit-positive {
    color: #059669;
}

.profit-negative {
    color: #ef4444;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.report-table th,
.report-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.report-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #374151;
}

.report-table tr:hover {
    background-color: #f9fafb;
}

@media (max-width: 640px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-table {
        font-size: 0.875rem;
    }

    .report-table th,
    .report-table td {
        padding: 0.5rem;
    }
}

/* Customer and Order Lists */
.customer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.customer-item:last-child {
    margin-bottom: 0;
}

.customer-item .customer-details {
    flex-grow: 1;
}

.customer-item .customer-details .username {
    font-weight: 600;
    color: #1f2937;
}

.customer-item .customer-details .chat-id {
    font-size: 0.85rem;
    color: #6b7280;
}

.order-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item .order-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.order-item .order-id {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
}

.order-item .order-status {
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.85rem;
}

.order-item .order-status.New {
    background-color: #e0f2fe;
    color: #0284c7;
}

.order-item .order-status.Confirmed {
    background-color: #d1fae5;
    color: #065f46;
}

.order-item .order-status.Cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

.order-item .order-details p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.order-item .order-items-summary {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #e5e7eb;
}

.order-item .order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.order-item .order-actions .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    box-shadow: 0 3px 0;
}

.order-item .order-actions .primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 0;
}

.order-item .order-actions .primary-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0;
}

/* Hidden Category Indicator */
#hidden-category-indicator {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-product-item.hidden-product {
    border-left: 4px solid #f59e0b;
}

.admin-product-item.hidden-product .name::after {
    content: ' 🔒';
    color: #f59e0b;
}

/* Admin Item Styles */
.admin-item {
    transition: all 0.3s ease;
}

.admin-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Statistics Cards */
.stat-item .stat-value.profit-positive {
    color: #059669;
}

.stat-item .stat-value.profit-negative {
    color: #ef4444;
}

/* Report Tables */
.report-table tbody tr:hover {
    background-color: #f8fafc;
}

.report-table .profit-positive {
    color: #059669;
    font-weight: 600;
}

.report-table .profit-negative {
    color: #ef4444;
    font-weight: 600;
}

/* Super Admin Badge */
.super-admin-badge {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

