
body {
    font-family: 'Inter', sans-serif;
    background-color: #C1C1B8; 
    margin: 0;
}


.sidebar {
    background: linear-gradient(180deg, #5D8F36 0%, #355321 100%);
    color: white;
    min-height: 100vh;
}

.sidebar .nav-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s;
}

.sidebar .nav-link:hover {
    color: white;
}


.stat-card {
    background-color: #79AC31;
    color: white;
    border-radius: 12px;
    padding: 25px;
}

.stat-card h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.placeholder-bar {
    background-color: #D9D9D9;
    height: 60px;
    border-radius: 8px;
}

.btn-add {
    background-color: #79AC31;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 8px 20px;
    font-weight: 600;
}


.item-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    height: 100%; 
    
    
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.img-container {
    width: 100%;
    height: 150px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; 
}

.product-name {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}


.btn-detail {
    background-color: #28A745;
    color: white;
    border: none;
    border-radius: 5px;
    
    
    width: 80%;      
    padding: 10px 0;  
    
    margin-top: auto; 
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.btn-detail:hover {
    background-color: #218838;
    color: white;
}