@charset "UTF-8";
/* CSS Document */

/* DAY Counter Styles (Kept exactly as provided) */
.counter-container {
    background: #E7E7E7;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #CCCCCC;
    text-align: center;
    width: 280px;
    box-sizing: border-box;
      
    /* Alignment Logic */
    margin: 0 auto; 
    display: block; /* Ensures margin auto works */
}
.counter-label {
    font-size: 28px;
    font-weight: bold;
    color: #BE0003;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.counter-number {
    font-size: 62px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 5px 0;
}
.counter-unit {
    font-size: 20px;
    font-weight: bold;
    color: #999;
}
.counter-description {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    border-top: 1px dotted #BE0003;
    padding-top: 15px;
}