﻿/* assets/css/style.css */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: bold;
}

.sidebar {
    min-height: calc(100vh - 56px);
    background-color: #343a40;
    padding: 0;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1rem;
    border-left: 4px solid transparent;
}

.sidebar .nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #007bff;
}

.sidebar .nav-link i {
    margin-right: 0.5rem;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

.table th {
    border-top: none;
}

.bg-primary-light {
    background-color: #e3f2fd;
}

.bg-warning-light {
    background-color: #fff8e1;
}

.bg-danger-light {
    background-color: #ffebee;
}

.alert {
    margin-bottom: 1rem;
}

#msg-flash {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    min-width: 300px;
}

.stock-low {
    background-color: #fff3cd !important;
}

.stock-critical {
    background-color: #f8d7da !important;
}

.dashboard-card {
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* assets/css/style.css */
.table-bordered th {
    background-color: #f8f9fa;
    width: 20%;
}

.card-header {
    background-color: #f8f9fa;
    font-weight: 600;
}

.confirm-action {
    cursor: pointer;
}