/* Custom styles */
:root {
    --primary-color: #0066cc;
    --primary-hover: #0052a3;
}

body {
    background-color: #f8f9fa;
}

.logo img {
    max-width: 300px;
    height: auto;
}

/* Custom button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Table enhancements */
.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    border-top: none;
}

/* Badge enhancements */
.badge {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Form enhancements */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

@media (max-width: 768px) {
    .logo img {
        max-width: 250px;
    }
}

/* Add Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
