/* ===========================================
   Business Day Counter - Tool Specific Styles
   =========================================== */

/* Tool Layout */
.bdc-box {
    max-width: 850px;
    margin: 0 auto;
}

/* Controls and Inputs */
.bdc-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background: #fefce8; /* Light Yellow/Cream BG */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fde047;
    margin-bottom: 30px;
}

.bdc-input-group {
    display: flex;
    flex-direction: column;
}

.bdc-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #854d0e; /* Dark Brown/Yellow Label */
    margin-bottom: 6px;
}

.bdc-input, .bdc-textarea {
    padding: 10px;
    border: 1px solid #facc15; /* Medium Yellow Border */
    border-radius: 6px;
    font-size: 1rem;
    color: #1f2937;
    width: 100%;
}

.bdc-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: monospace;
}

/* Checkbox/Options */
.bdc-options {
    grid-column: 1 / -1; /* Full width */
    display: flex;
    gap: 30px;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Calculate Button */
.bdc-btn-calc {
    grid-column: 1 / -1; 
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #eab308; /* Primary Amber/Gold Button */
    color: white;
    transition: background 0.2s;
    margin-top: 10px;
}
.bdc-btn-calc:hover {
    background: #d97706;
}

/* --- Results Section --- */

.bdc-results-section {
    margin-top: 30px;
    text-align: center;
}

.bdc-result-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.bdc-card-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.bdc-value {
    font-size: 3rem;
    font-weight: 800;
    color: #eab308;
    line-height: 1;
}

.bdc-value small {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
    color: #4b5563;
}

/* Detail Summary */
.bdc-details {
    margin-top: 25px;
    font-size: 1rem;
    color: #374151;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}
.bdc-details strong {
    font-weight: 700;
    color: #1f2937;
}

/* Responsive Styling */
@media (max-width: 600px) {
    .bdc-controls {
        grid-template-columns: 1fr;
    }
    .bdc-options {
        flex-direction: column;
        gap: 15px;
    }
}