/* Admin Panel Custom Styles */
body {
    background-color: #f4f6f9;
}

.navbar-dark {
    background-color: #343a40 !important;
}

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

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* Quill Editor Customization */
.ql-container {
    height: 200px;
    border: 1px solid #ced4da;
}

.ql-editor {
    min-height: 150px;
}

/* Form Styling */
.form-control, .form-select {
    border-color: #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Thumbnail Preview */
.img-thumbnail {
    max-height: 200px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

/* Dashboard Card Styles */
.dashboard-card {
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: scale(1.05);
} 