/* css/style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bg-success {
    background-color: #28a745 !important;
}
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
.text-success {
    color: #28a745 !important;
}
.border-success {
    border-color: #28a745 !important;
}
.card {
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: bold;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: #28a745;
}
/* Hero section */
.hero {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 3rem 1rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.hero .btn-light {
    color: #28a745;
    font-weight: 600;
}
/* Low stock badge */
.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}