/* Tema Declaración Jurada */
/* Base General: #8c191e = hsl(357, 72%, 32%) — rojo institucional */
/* DDJJ: 10% más claro en lightness → hsl(357, 72%, 42%) = #b81e26   */
.theme-ddjj {
    --theme-primary: #b81e26;        /* hsl(357,72%,42%) — 10% más claro que General */
    --theme-primary-light: #dd2c35;  /* hover claro */
    --theme-primary-dark: #8c191e;   /* = General — hover oscuro */
    --cover-bg: var(--theme-primary);
}

.theme-ddjj .btn-primary {
    background-color: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
}

.theme-ddjj .btn-primary:hover,
.theme-ddjj .btn-primary:focus,
.theme-ddjj .btn-primary:active {
    background-color: var(--theme-primary-dark) !important;
    border-color: var(--theme-primary-dark) !important;
}

.theme-ddjj .app-header,
.theme-ddjj .app-header__logo {
    background-color: var(--theme-primary) !important;
}

.theme-ddjj .app-sidebar {
    background-color: var(--theme-primary) !important;
    border-right: 1px solid var(--theme-primary-dark);
}

.theme-ddjj .app-menu__item.active,
.theme-ddjj .app-menu__item:hover,
.theme-ddjj .app-menu__item:focus {
    background: var(--theme-primary-light) !important;
    border-left-color: var(--theme-primary-dark) !important;
}

.theme-ddjj.material-half-bg .cover,
.theme-ddjj .cover {
    background-color: var(--theme-primary) !important;
    background-image: none !important;
}
