/* ===========================================
   Days Until Any Date Calculator - Tool Specific Styles (Sky Blue Theme)
   =========================================== */

/* Tool Layout */
.duac-box {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

/* --- Controls and Inputs --- */
.duac-controls {
    background: #f0faff; /* Light Blue BG */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    margin-bottom: 30px;
}

.duac-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
}

.duac-label {
    font-size: 1rem;
    font-weight: 600;
    color: #0c4a6e; /* Dark Blue Label */
    margin-bottom: 8px;
}

.duac-input {
    padding: 12px;
    border: 2px solid #38bdf8; /* Medium Sky Blue Border */
    border-radius: 8px;
    font-size: 1.2rem;
    color: #1f2937;
    width: 100%;
}


/* --- Results Summary --- */
.duac-results {
    margin-top: 30px;
    text-align: center;
}

.duac-summary {
    padding: 30px;
    background: #e0f2fe; /* Lighter Result BG */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.duac-result-label {
    font-size: 1.5rem;
    color: #0c4a6e;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.duac-days-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0ea5e9; /* Primary Sky Blue Highlight */
    line-height: 1.1;
}

.duac-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .duac-days-value {
        font-size: 3.5rem;
    }
    .duac-result-label {
        font-size: 1.2rem;
    }
    .duac-unit {
        font-size: 1.2rem;
    }
}