/* ===========================================
   Days Until Birthday Calculator - Tool Specific Styles (Pink/Celebratory Theme)
   =========================================== */

/* Tool Layout */
.dubc-box {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

/* --- Controls and Inputs --- */
.dubc-controls {
    background: #fff7f7; /* Light Pink BG */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    margin-bottom: 30px;
}

.dubc-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
}

.dubc-label {
    font-size: 1rem;
    font-weight: 600;
    color: #9d174d; /* Dark Rose Label */
    margin-bottom: 8px;
}

.dubc-input {
    padding: 12px;
    border: 2px solid #f472b6; /* Medium Pink Border */
    border-radius: 8px;
    font-size: 1.2rem;
    color: #1f2937;
    width: 100%;
}


/* --- Results Summary --- */
.dubc-results {
    margin-top: 30px;
    text-align: center;
}

.dubc-summary {
    padding: 30px;
    background: #fdf2f8; /* Lighter Result BG */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.dubc-result-label {
    font-size: 1.2rem;
    color: #9d174d;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.dubc-days-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ec4899; /* Primary Pink Highlight */
    line-height: 1.1;
}

.dubc-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #be185d;
    margin-top: 5px;
}

.dubc-age-info {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #9d174d;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .dubc-days-value {
        font-size: 3.5rem;
    }
    .dubc-result-label {
        font-size: 1rem;
    }
    .dubc-unit {
        font-size: 1.2rem;
    }
}