/* ===========================================
   Working Days Calculator - Tool Specific Styles (Yellow/Grey Theme)
   =========================================== */

/* Tool Layout */
.wdc-box {
    max-width: 750px;
    margin: 0 auto;
}

/* --- Controls and Inputs --- */
.wdc-controls {
    background: #fffdfa; /* Off-White BG */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fef3c7;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Dates and Settings side-by-side */
    gap: 30px;
}

.wdc-date-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wdc-settings {
    border-left: 1px solid #fef3c7;
    padding-left: 20px;
    text-align: left;
}

.wdc-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #b45309; /* Dark Orange Label */
    margin-bottom: 6px;
    display: block;
}

.wdc-input {
    padding: 10px;
    border: 1px solid #fcd34d; 
    border-radius: 6px;
    font-size: 1.1rem;
    color: #1f2937;
    width: 100%;
}

/* --- Settings Checkboxes/Radio --- */
.wdc-checkbox-group label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}
.wdc-checkbox-group input[type="checkbox"], 
.wdc-checkbox-group input[type="radio"] {
    margin-right: 5px;
    width: 16px;
    height: 16px;
    accent-color: #f59e0b; /* Orange accent */
}

/* --- Holiday Input Area --- */
.wdc-holidays-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #fcd34d;
}

.wdc-holiday-input {
    margin-bottom: 8px;
    display: flex;
    gap: 5px;
}
.wdc-holiday-input input {
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
}
.wdc-add-holiday-btn {
    background: #fcd34d;
    color: #4b5563;
    padding: 5px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}
.wdc-delete-holiday-btn {
    background: none;
    border: none;
    color: #ef4444; 
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    line-height: 1;
}

/* --- Results Summary --- */
.wdc-results {
    margin-top: 30px;
    text-align: center;
}

.wdc-summary {
    padding: 35px;
    background: #fefce8; /* Pale Yellow BG */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.wdc-result-label {
    font-size: 1.5rem;
    color: #b45309;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.wdc-days-value {
    font-size: 5rem;
    font-weight: 900;
    color: #f59e0b; /* Primary Orange Highlight */
    line-height: 1.1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wdc-controls {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .wdc-settings {
        border-left: none;
        border-top: 1px solid #fef3c7;
        padding-left: 0;
        padding-top: 20px;
    }
    .wdc-days-value {
        font-size: 3.5rem;
    }
}