/* ═══════════════════════════════════════════════════════════════════════════
   TEMA VERDE (Verde Success) - TEMA DEFAULT
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Culori primare temă verde */
    --theme-primary: #28a745;
    --theme-primary-light: #34ce57;
    --theme-primary-dark: #218838;
    --theme-primary-rgb: 40, 167, 69;
    
    /* Culori secundare */
    --theme-secondary: #17a2b8;
    --theme-accent: #20c997;
    
    /* Nume temă pentru identificare */
    --theme-name: "Verde Success";
}

/* Aplicare culori temă */
.date-button {
    background: var(--theme-primary) !important;
}

.date-button:hover {
    background: var(--theme-primary-dark) !important;
}

.date-button.selected {
    background: var(--theme-primary-dark) !important;
}

.week-header {
    border-left-color: var(--theme-primary) !important;
}

.week-header:hover {
    box-shadow: 0 2px 6px rgba(var(--theme-primary-rgb), 0.15) !important;
    border-left-color: var(--theme-primary-dark) !important;
}

.date-button:focus {
    outline-color: rgba(var(--theme-primary-rgb), 0.5) !important;
}

.slot-button {
    background: var(--theme-primary) !important;
}

.slot-button:hover {
    background: var(--theme-primary-dark) !important;
}

.slot-button:focus {
    outline-color: rgba(var(--theme-primary-rgb), 0.5) !important;
}

