/**
 * JMC Date Display Styles
 */

.jmc-date-display {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #1d1d1d;
}

.jmc-date-display__prefix {
    font-weight: 500;
    color: #1d1d1d;
}

.jmc-date-display__separator {
    color: #1d1d1d;
}

.jmc-date-display__date {
    color: #1d1d1d;
    margin-left: 5px;
}

/* Variante con icono de calendario (opcional) */
.jmc-date-display--with-icon::before {
    content: "\f073";
    font-family: "dashicons";
    margin-right: 0.5rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .jmc-date-display {
        font-size: 0.8125rem;
    }
}

/* Print styles */
@media print {
    .jmc-date-display {
        color: #000;
    }
}
