/* ===========================================
   Time Left Calculator - Tool Specific Styles (Dark Blue/Gold Theme)
   =========================================== */

/* Tool Layout */
.tlc-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* --- Input Area --- */
.tlc-input-group {
    background: #e0f7fa; /* Pale Blue BG */
    border: 1px solid #00bcd4;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tlc-input-item {
    text-align: left;
    margin-bottom: 20px;
}

.tlc-label {
    font-size: 1rem;
    font-weight: 600;
    color: #0d47a1; /* Dark Blue Label */
    margin-bottom: 8px;
    display: block;
}

.tlc-input-field {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffcc80; /* Light Gold Border */
    border-radius: 8px;
    font-size: 1.1rem;
    color: #1f2937;
    box-sizing: border-box;
    background-color: white;
}
.tlc-input-field:focus {
    border-color: #ffb300; /* Bright Gold Focus */
    outline: none;
}

/* --- Results Display --- */
.tlc-results {
    margin-top: 30px;
    text-align: center;
}

.tlc-summary-box {
    padding: 30px;
    background: #0d47a1; /* Deep Blue Background */
    border: 3px solid #ffb300; /* Gold Border */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.tlc-goal-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #bbdefb;
    margin-bottom: 15px;
}

.tlc-final-time {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700; /* Bright Gold Highlight */
    line-height: 1.1;
}

/* Detailed Results Grid */
.tlc-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #1e88e5; /* Lighter Blue Separator */
}

.tlc-detail-item {
    text-align: center;
}

.tlc-detail-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffecb3; /* Pale Gold */
    line-height: 1.1;
}

.tlc-detail-unit {
    font-size: 0.8rem;
    color: #90caf9;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .tlc-input-group {
        padding: 20px 15px;
    }
    .tlc-final-time {
        font-size: 2.5rem;
    }
    .tlc-detail-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
    }
    .tlc-detail-value {
        font-size: 1.3rem;
    }
}