/* ===========================================
   Laylat ul-Qadr Countdown - Tool Specific Styles (Purple/Gold Theme)
   =========================================== */

/* Tool Layout */
.lqc-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- Main Countdown Display --- */
.lqc-countdown-display {
    background: #f3e8ff; /* Pale Lavender BG */
    border: 3px solid #a855f7; /* Violet Border */
    border-radius: 16px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lqc-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4c1d95; /* Deep Purple */
    margin-bottom: 10px;
}

.lqc-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5cf6; /* Medium Violet */
    margin-bottom: 25px;
}

/* Timer Grid */
.lqc-timer-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lqc-timer-unit {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 90px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lqc-timer-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #f59e0b; /* Deep Gold Highlight */
    line-height: 1.1;
}

.lqc-timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4c1d95;
    margin-top: 5px;
}

/* Countdown Over Status */
.lqc-countdown-over {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981; /* Green success color */
    padding: 20px;
}

/* --- Configuration and Information --- */
.lqc-info-box {
    text-align: left;
    background: #fbfbfe;
    border: 1px solid #ddd6fe;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.lqc-config-title {
    font-size: 1.4rem;
    color: #4c1d95;
    margin-bottom: 15px;
}

.lqc-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.lqc-input-group label {
    font-weight: 600;
    color: #6d28d9;
    flex-shrink: 0;
}

.lqc-input {
    padding: 8px;
    border: 1px solid #a855f7;
    border-radius: 6px;
    font-size: 1rem;
    flex-grow: 1;
}

/* Potential Nights List */
.lqc-nights-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style: none;
    font-size: 1rem;
    color: #4c1d95;
}

.lqc-nights-list li {
    padding: 3px 0;
}
.lqc-nights-list li strong {
    color: #f59e0b;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    .lqc-timer-grid {
        gap: 10px;
        flex-wrap: wrap;
    }
    .lqc-timer-unit {
        padding: 10px 15px;
        min-width: 45%;
    }
    .lqc-timer-value {
        font-size: 2.5rem;
    }
    .lqc-title {
        font-size: 1.8rem;
    }
    .lqc-input-group {
        flex-direction: column;
        align-items: flex-start;
    }
}