/* Custom styles */

body {
    background-color: #f8f9fa; /* Light background color */
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

h1 {
    font-size: 2rem; /* Adjust this value as needed */
}


/* Header Titles */
h2, h3, h4 {
    color: #343a40; /* Dark text color */
}

/* Card Styles */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Table Styles */
.table {
    background-color: #ffffff;
}

.table th, .table td {
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}

.table-hover tbody tr:hover {
    background-color: #e9ecef;
}

.table thead th {
    background-color: #343a40;
    color: #fff;
}

/* Button Styles */
.btn {
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.9rem;
    transition: background-color 0.2s, color 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-info {
    background-color: #17a2b8;
    border: none;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.btn-light {
    background-color: #f8f9fa;
    border: none;
}

.btn-dark {
    background-color: #343a40;
    border: none;
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 10px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}

/* List Group */
.list-group-item-warning {
    background-color: #fff3cd;
}

.table-danger {
    background-color: #f8d7da;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .navbar-text {
        font-size: 0.9rem;
    }
}

