/* Brand Colors */
:root {
    --brand-red: #9d0d12;
    --brand-dark: #7a0a0e;
    --brand-light: #fdf2f2;
}

body {
    background-color: #fcfcfc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.bg-brand {
    background-color: var(--brand-red) !important;
}

.text-brand {
    color: var(--brand-red) !important;
}

.btn-brand {
    background-color: var(--brand-red);
    color: white;
    border: none;
}

.btn-brand:hover {
    background-color: var(--brand-dark);
    color: white;
}

.btn-outline-brand {
    border: 2px solid var(--brand-red);
    color: var(--brand-red);
    background: transparent;
}

.btn-outline-brand:hover {
    background-color: var(--brand-red);
    color: white;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 0.75rem;
}

.card-header {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
    font-weight: 600;
}

.header-brand {
    background-color: var(--brand-red);
    color: white;
}

.table-hover tbody tr:hover {
    background-color: var(--brand-light);
    cursor: pointer;
}

.nota-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
}

/* Form styling */
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 0.2rem rgba(157, 13, 18, 0.15);
}

.login-container {
    max-width: 400px;
    margin-top: 10vh;
}

.brand-logo-large {
    max-width: 200px;
    margin-bottom: 2rem;
}

footer {
    padding: 2rem 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}