body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Card styles */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 20px;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    padding: 15px;
    border-bottom: none;
}

/* Button styles */
.btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Table styles */
.table-container {
    overflow-x: auto;
}

.table {
    margin-bottom: 0;
    vertical-align: middle;
}

.table th {
    font-weight: 600;
    border-top: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.07);
}

/* Form styles */
.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Action buttons */
.action-buttons .btn {
    margin-right: 5px;
}

.action-buttons .btn:last-child {
    margin-right: 0;
}

/* Stats cards */
.bg-primary, .bg-info, .bg-success, .bg-warning, .bg-danger {
    color: white;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
}

/* Custom pagination */
.pagination {
    margin-bottom: 0;
}

.pagination .page-link {
    border-radius: 3px;
    margin: 0 3px;
}

/* Modal Customizations */
.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-footer {
    border-top: none;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
}

/* Badge styles */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .action-buttons .btn {
        margin-bottom: 5px;
        width: 100%;
        display: block;
    }
}

.btn-add {
    margin-bottom: 20px;
}

.filters {
    margin-bottom: 15px;
} 