/* ===========================================
   Weekday Calculator - Tool Specific Styles
   =========================================== */

/* Tool Layout */
.wd-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Input/Control Section */
.wd-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    justify-content: center;
    background: #f0fdf4; /* Very Light Green BG */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dcfce7; /* Light Green Border */
    margin-bottom: 30px;
}

.wd-input-group {
    flex: 1 1 200px;
    min-width: 0;
}

.wd-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #065f46; /* Dark Green Label */
    margin-bottom: 6px;
    text-align: left;
}

.wd-date-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #a7f3d0;
    border-radius: 6px;
    font-size: 1rem;
    color: #1f2937;
}

.wd-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    flex-grow: 0;
}

.wd-btn-calc {
    background: #10b981; /* Primary Green */
    color: white;
}
.wd-btn-calc:hover {
    background: #059669;
}

.wd-btn-today {
    background: #e5e7eb; /* Secondary Gray */
    color: #374151;
}
.wd-btn-today:hover {
    background: #d1d5db;
}

/* Result Display Section */
.wd-result-card {
    background: #ffffff;
    border: 2px solid #34d399; /* Medium Green Accent */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3); /* Green Shadow */
}

.wd-result-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 10px;
}

.wd-day-name {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin: 10px 0 20px;
    line-height: 1.2;
}

.wd-date-display {
    font-size: 1.2rem;
    color: #4b5563;
    font-weight: 500;
}