body {
    background-color: #fdfbf7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #5a5a5a;
}

.bg-theme {
    background-color: #dcb0ba; /* Dusty pink */
    color: white;
}

.text-theme {
    color: #dcb0ba;
}

.btn-theme {
    background-color: #dcb0ba;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-theme:hover {
    background-color: #c99ba6;
    color: white;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

/* .card:hover {
    transform: translateY(-5px);
} */

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    color: #777;
    font-weight: 500;
}

.nav-link.active {
    color: #dcb0ba !important;
}

.nav-link i {
    margin-right: 5px;
}

.sidebar-btn {
    text-align: left;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 10px;
    background-color: white;
    color: #666;
    transition: all 0.3s;
}

.sidebar-btn:hover, .sidebar-btn.active {
    background-color: #dcb0ba;
    color: white;
}

.sidebar-btn i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.table thead th {
    border-top: none;
    border-bottom: 2px solid #f0f0f0;
    color: #888;
    font-weight: 600;
}

.avatar-initial {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

.badge-soft-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-soft-warning {
    background-color: #fff3cd;
    color: #664d03;
}

/* --- Inventory Excel-like Styles --- */
.inventory-table th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 10;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inventory-row-ok { background-color: rgba(25, 135, 84, 0.05); }
.inventory-row-missing { background-color: rgba(220, 53, 69, 0.05); }
.inventory-row-surplus { background-color: rgba(13, 110, 253, 0.05); }

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
.status-green { background-color: #198754; }
.status-red { background-color: #dc3545; }
.status-blue { background-color: #0d6efd; }
.status-grey { background-color: #adb5bd; }

.input-excel {
    border: 1px solid transparent;
    background: transparent;
    text-align: center;
    font-weight: bold;
    width: 100%;
}
.input-excel:focus {
    background: white;
    border: 2px solid #dcb0ba;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 176, 186, 0.2);
}
.input-excel:hover {
    border: 1px solid #dee2e6;
    background: white;
}

.diff-negative { color: #dc3545; font-weight: bold; }
.diff-positive { color: #0d6efd; font-weight: bold; }
.diff-neutral { color: #198754; font-weight: bold; }

/* Sticky footer for inventory actions */
.inventory-actions-bar {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #dee2e6;
    padding: 15px;
    z-index: 20;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}
