/* Custom styles for Nursery Management System */

body {
    font-family: 'Arial', sans-serif;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.table th {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.alert {
    border-radius: 0.375rem;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.sidebar {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.sidebar .nav-link {
    color: #495057;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #495057;
}

.sidebar .nav-link.active {
    background-color: #28a745;
    color: white;
}

.main-content {
    padding: 20px;
}

.dashboard-card {
    transition: transform 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}
