
#dccf-contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#dccf-editor {
    flex: 2;
}
#dccf-calendario {
    flex: 1;
    min-width: 200px;
}
#dccf-toolbar button {
    margin-right: 5px;
}
#dccf-area {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 200px;
    margin-bottom: 10px;
    background: #fff;
}

.flatpickr-day.has-content { background: #3c91e6; color: white; border-radius: 50%; }
.flatpickr-day {
    position: relative;
}

.flatpickr-day .granate-underline {
    position: absolute;
    bottom: 4px;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #800000; /* granate */
    border-radius: 1px;
}

/* Botones granate con hover negro */
#dccf-guardar, #dccf-exportar, #dccf-imprimir {
    background-color: #800000;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px 5px 10px 0;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

#dccf-guardar:hover,
#dccf-exportar:hover,
#dccf-imprimir:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Línea granate debajo del número del día */
.flatpickr-day {
    position: relative;
}

.flatpickr-day .granate-underline {
    position: absolute;
    bottom: 4px;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #800000;
    border-radius: 1px;
}


/* Fuerza estilos de botones */
#dccf-guardar, #dccf-exportar, #dccf-imprimir {
    background-color: #800000 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    margin: 5px 5px 10px 0 !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    font-family: inherit !important;
}

#dccf-guardar:hover,
#dccf-exportar:hover,
#dccf-imprimir:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}
