@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --graphite: #333333;
    --chestnut: #852D29;
    --red: #D7271F;
    --red-orange: #E04F1D;
    --orange: #E8761A;
    --orange-yellow: #F09C0F;
    --yellow: #F7C204;
    --white: #FFFFFF;
}


body {
    background-color: var(--yellow);
    color: var(--graphite);
    font-family: 'Montserrat', sans-serif;
    margin-left: 260px !important;

}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}
/* Form */
.card form .form-label {
    font-weight: 600;
}

/* View toggle */
.view-toggle .btn {
    border-color: rgba(0, 0, 0, 0.06);
}

.view-toggle .btn.active {
    background: var(--chestnut);
    color: var(--white);
    border-color: var(--chestnut);
}

/* Card view badges */
.badge-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--chestnut), var(--red));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.request-card .card-body {
    padding-bottom: 0.5rem;
}

/* Reuse theme buttons locally */
.btn-theme {
    background: var(--chestnut);
    color: var(--white);
    border: none;
    font-weight: 600;
}

.btn-theme-outline {
    background: transparent;
    color: var(--chestnut);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* small responsive tweaks */
@media (max-width: 767.98px) {
    body {
        margin-left: 0;
    }

    .with-sidebar main {
        padding-top: 1rem;
    }
}