/* ===========================================
   Pakistan Iqbal Day Countdown - Tool Specific Styles (Deep Teal/Cream White Theme)
   =========================================== */

/* Tool Layout */
.pidc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.pidc-display-box {
    background: #004d40; /* Deep Teal Green Base (Academic/Solemn) */
    background-image: linear-gradient(135deg, #00796b, #004d40); /* Teal Gradient */
    border: 5px solid #fff3e0; /* Cream White/Off-White Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 77, 64, 0.6);
    color: white;
}

.pidc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e0f2f1; /* Pale Green/White */
}

.pidc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.pidc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.pidc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #fff3e0; /* Cream White Value */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pidc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #80cbc4; /* Light Teal/Mint Green Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.pidc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #004d40; /* Deep Teal Text */
    background: #fff3e0; /* Cream White background for pop */
    padding: 10px;
    border-radius: 8px;
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pidc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .pidc-countdown-grid {
        flex-wrap: wrap;
    }
    .pidc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .pidc-time-value {
        font-size: 2.2rem;
    }
    .pidc-time-unit {
        font-size: 0.8rem;
    }
    .pidc-display-box {
        padding: 30px 10px;
    }
}