/* Domail — Custom Styles */

:root {
    --primary: #0d6efd;
    --sidebar-width: 0px;
}

body {
    background: #f5f7fa;
    font-size: 0.95rem;
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.card-header.bg-info {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd) !important;
}

.table {
    font-size: 0.9rem;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btn {
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #198754, #20c997);
    border: none;
}

.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 5px;
}

code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #d63384;
}

.alert {
    border-radius: 8px;
    border: none;
}

.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Dashboard cards */
.card.border-primary .display-4 { color: #0d6efd !important; }
.card.border-success .display-4 { color: #198754 !important; }
.card.border-info .display-4 { color: #0dcaf0 !important; }
.card.border-warning .display-4 { color: #ffc107 !important; }

/* Responsive */
@media (max-width: 768px) {
    h3 { font-size: 1.3rem; }
    .container-fluid { padding: 0 10px; }
}

/* Animation */
.card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
