/* Modales */
.dc-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: none; align-items: center; justify-content: center; z-index: 999999; backdrop-filter: blur(3px); }
.dc-box { background: #fff; padding: 25px; border-radius: 12px; display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 350px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); box-sizing: border-box; }
.dc-box h3 { margin: 0; text-align: center; color: #333; font-family: sans-serif; }
.dc-box p { font-size: 14px; text-align: center; color: #555; }
.dc-form-group { display: flex; flex-direction: column; gap: 10px; }
.dc-form-group input { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 14px; transition: border-color 0.3s; }
.dc-form-group input:focus { border-color: #007cba; outline: none; }
.dc-actions { display: flex; gap: 10px; margin-top: 10px; }
.dc-actions button { flex: 1; padding: 12px; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; font-size: 14px; transition: opacity 0.2s; }
.dc-actions button:hover { opacity: 0.8; }
.dc-btn-confirm { background: #007cba; color: white; }
.dc-btn-cancel { background: #e2e2e2; color: #333; }

/* Estilos de Calendario */
.fc-non-business {
    background: repeating-linear-gradient( 45deg, #f0f0f0, #f0f0f0 10px, #e8e8e8 10px, #e8e8e8 20px ) !important;
    opacity: 1 !important;
}
.dc-evento-bloqueado {
    border: 2px dashed #555 !important;
}
.fc-event {
    cursor: pointer;
}

/* ============================================================
   DISEÑO DE CALENDARIOS LADO A LADO
   ============================================================ */
.dc-calendarios-wrapper {
    display: flex;
    gap: 30px; 
    width: 100%;
    align-items: flex-start;
}

.dc-cal-container {
    flex: 1; 
    min-width: 0; 
}

/* En teléfonos se ponen uno debajo del otro */
@media (max-width: 900px) {
    .dc-calendarios-wrapper {
        flex-direction: column;
    }
}