/* ===========================================
   Christmas Countdown - Tool Specific Styles (Red/Green Theme)
   =========================================== */

/* Tool Layout */
.cc-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- Countdown Display --- */
.cc-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 0;
    border-radius: 15px;
    background: #fdfdfd; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cc-segment {
    background: #ffffff;
    border: 2px solid #e53935; /* Primary Red Border */
    border-radius: 10px;
    padding: 15px 10px;
    width: 23%; /* Approx 1/4 of container width */
    min-width: 70px;
}

.cc-value {
    font-size: 3rem;
    font-weight: 900;
    color: #e53935; /* Primary Red */
    line-height: 1.1;
    margin-bottom: 5px;
    font-family: 'Arial Black', sans-serif;
}

.cc-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #43a047; /* Primary Green */
    text-transform: uppercase;
}

/* --- Festive Elements --- */
.cc-target-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #43a047; /* Green for date */
    margin-bottom: 20px;
}

.cc-finished {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e53935;
    padding: 30px;
    background: #fff8e1; /* Light Yellow background */
    border: 3px solid #e53935;
    border-radius: 10px;
    display: none; /* Initially hidden */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .cc-countdown {
        flex-wrap: wrap; /* Wrap segments on small screens */
        gap: 10px;
    }
    .cc-segment {
        width: 45%; /* Two segments per row */
        padding: 10px 5px;
    }
    .cc-value {
        font-size: 2rem;
    }
    .cc-target-date {
        font-size: 1.2rem;
    }
}