/* styles.css */
.bg-light {
    background-color: #f8f9fa !important;
}

.text-green {
    color: #28a745 !important;
}

.btn-green {
    background-color: #28a745;
    color: white;
    border: none;
}

.btn-green:hover {
    background-color: #218838;
}

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
}

.card {
    border-radius: 0.5rem;
}

.card-body {
    padding: 2rem;
}

.alert {
    margin-bottom: 1rem;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.text-center {
    text-align: center;
}


/* styles.css */

body.bg-off-white {
    background-color: #f8f9f9; /* Light off-white color */
}

.text-green {
    color: #28a745; /* Bootstrap green */
}

.bg-green {
    background-color: #28a745; /* Bootstrap green */
}

.btn-green {
    background-color: #28a745; /* Bootstrap green */
    color: white;
}

.btn-green:hover {
    background-color: #218838; /* Darker green for hover effect */
}

.table {
    background-color: #ffffff; /* White background for table */
}

.table thead {
    background-color: #28a745; /* Green header for table */
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2; /* Light gray for alternating rows */
}
