/* assets/css/style.css */
body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.table th {
    background-color: #f8f9fa;
}

.badge {
    padding: 5px 10px;
    font-weight: 500;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Rating stars */
.bi-star-fill {
    color: #ffc107;
}

.bi-star {
    color: #dee2e6;
}

/* Dashboard cards */
.card.text-white .bi {
    opacity: 0.3;
}

/* Forms */
.form-label {
    font-weight: 500;
    color: #495057;
}

.required:after {
    content: " *";
    color: #dc3545;
}

/* Tables */
.table-hover tbody tr:hover {
    background-color: rgba(0,123,255,0.05);
}

/* Responsive tables */
.table-responsive {
    border-radius: 4px;
}

/* Print styles */
@media print {
    .navbar, .btn, .footer {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}