/**
 * et-dt-frontend.css
 * Basic styling for Ethiopian Date/Time plugin shortcode output.
 */

.et-dt-date,
.et-dt-time-live,
.et-dt-datetime {
    /* Ensures consistent display */
    display: inline-block;
    padding: 0 5px; 
    font-weight: bold;
    font-size: 1.1em;
    font-family: Arial, sans-serif; /* Fallback for Amharic readability */
}

/* Specific styling for combined output */
.et-dt-datetime {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

/* Optional styles for live time to highlight the update */
.et-dt-time-live,
.et-dt-datetime span.live-time-component {
    font-family: monospace, sans-serif;
    color: #0073aa; /* WordPress primary color */
}