.bd-wrap { max-width: 100%; }

.bd-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.bd-col { flex: 1; min-width: 200px; }
.bd-col label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e2a4a;
    margin-bottom: 6px;
}
.bd-col input, .bd-col select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}
.bd-col input:focus, .bd-col select:focus {
    outline: none;
    border-color: #10b981;
}

.bd-checkbox-row {
    flex-direction: column;
    gap: 8px;
}
.bd-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #374151;
    cursor: pointer;
}
.bd-checkbox-label input { cursor: pointer; }

.bd-btn {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.bd-btn:hover { background: #0da271; }
.bd-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.bd-error-text {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #b91c1c;
    font-size: 13px;
}

.bd-result {
    margin-top: 24px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
}

.bd-result-main {
    background: #1e2a4a;
    color: #fff;
    padding: 24px;
    text-align: center;
}
.bd-result-number {
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}
.bd-result-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bd-result-breakdown {
    background: #f9fafb;
    padding: 16px 24px;
}
.bd-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13.5px;
    border-bottom: 1px solid #e5e7eb;
}
.bd-breakdown-item:last-child { border-bottom: none; }
.bd-breakdown-label { color: #6b7280; }
.bd-breakdown-value { font-weight: 700; color: #1e2a4a; }

.bd-holidays-list {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}
.bd-holidays-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e2a4a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.bd-holidays-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bd-holidays-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}
.bd-holidays-list li:last-child { border-bottom: none; }
.bd-holiday-date { color: #10b981; font-weight: 600; flex-shrink: 0; margin-left: 12px; }

.bd-api-note {
    padding: 10px 24px;
    background: #fffbeb;
    border-top: 1px solid #fde68a;
    color: #92400e;
    font-size: 12.5px;
}

@media (max-width: 600px) {
    .bd-result-number { font-size: 36px; }
}
