/* ===========================================
   Week Number Calculator - Tool Specific Styles (Teal/Gold Theme)
   =========================================== */

/* Tool Layout */
.wnc-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* --- Input Area --- */
.wnc-input-group {
    background: #f0fdfa; /* Pale Teal BG */
    border: 1px solid #99f6e4;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.wnc-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f766e; /* Dark Teal Label */
    margin-bottom: 15px;
    display: block;
}

.wnc-input {
    padding: 15px;
    border: 2px solid #2dd4bf;
    border-radius: 8px;
    font-size: 1.4rem;
    color: #1f2937;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* --- Results Display --- */
.wnc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.wnc-result-box {
    background: #ffffff;
    border: 2px solid #fbbf24; /* Amber/Gold Border */
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.wnc-result-box:hover {
    transform: translateY(-3px);
}

.wnc-result-label {
    font-size: 1rem;
    font-weight: 600;
    color: #b45309; /* Dark Orange/Gold Text */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wnc-week-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0d9488; /* Deep Teal Highlight */
    line-height: 1.1;
}

.wnc-detail-text {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .wnc-results-grid {
        grid-template-columns: 1fr;
    }
    .wnc-week-number {
        font-size: 3.5rem;
    }
    .wnc-input {
        font-size: 1.2rem;
        max-width: 100%;
    }
}