/* ===========================================
   Business Date Finder - Tool Specific Styles
   =========================================== */

/* Main Container and Layout */
.bd-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Input Section */
.bd-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    background: #f0f9ff; /* Very Light Blue BG */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #bae6fd; /* Light Blue Border */
    margin-bottom: 30px;
}

.bd-input-group {
    flex: 1 1 200px;
}

.bd-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0c4a6e; /* Dark Blue Label */
    margin-bottom: 6px;
}

.bd-date-input,
.bd-days-input,
.bd-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #90cdf4;
    border-radius: 6px;
    font-size: 1rem;
    color: #1f2937;
}

.bd-days-input {
    text-align: center;
}

.bd-btn-calc {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: #10b981; /* Green Button */
    color: white;
    transition: background 0.2s;
}

.bd-btn-calc:hover {
    background: #059669;
}

/* Result Display Section */
.bd-result-card {
    background: #ffffff;
    border: 2px solid #10b981; /* Green Accent */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2); /* Green Shadow */
}

.bd-result-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 5px;
}

.bd-final-date {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 10px 0 20px;
    line-height: 1.2;
}

/* Details Table */
.bd-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.bd-details-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.bd-key {
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
    width: 40%;
}

.bd-val {
    color: #1f2937;
    text-align: right;
}

/* Responsive */
@media (max-width: 600px) {
    .bd-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .bd-btn-calc {
        width: 100%;
    }
}