/* ===========================================
   Day of Week Calculator - Tool Specific Styles (Purple/Lavender Theme)
   =========================================== */

/* Tool Layout */
.dowc-box {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

/* --- Controls and Inputs --- */
.dowc-controls {
    background: #faf5ff; /* Light Lavender BG */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #d8b4fe;
    margin-bottom: 30px;
}

.dowc-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.dowc-label {
    font-size: 1rem;
    font-weight: 600;
    color: #6b21a8; /* Deep Purple Label */
    margin-bottom: 8px;
}

.dowc-input {
    padding: 12px;
    border: 2px solid #a78bfa; /* Medium Purple Border */
    border-radius: 8px;
    font-size: 1.2rem;
    color: #1f2937;
    width: 100%;
}


/* --- Results Summary --- */
.dowc-results {
    margin-top: 30px;
    text-align: center;
}

.dowc-summary {
    padding: 30px;
    background: #f3e8ff; /* Lighter Result BG */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.dowc-result-label {
    font-size: 1.3rem;
    color: #6b21a8;
    font-weight: 600;
    margin-bottom: 10px;
}

.dowc-day-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #8b5cf6; /* Primary Violet Highlight */
    line-height: 1.1;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .dowc-day-value {
        font-size: 2.8rem;
    }
}