/* ====== WRAPPER ====== */

#depositbrand {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.brand-calculator-wrapper {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    width: 100%;
    box-sizing: border-box;
}

/* כותרת עליונה בתוך הבוקס */
.bc-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #b8860b; /* זהב כהה */
}

/* ====== TABS (קטגוריות) ====== */

.bc-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bc-tab {
    background: #f0ece8;
    color: #0023a7;
    border: 2px solid #0023a7;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
}

.bc-tab:hover {
    background: #fcc50a;
    border-color: #fcc50a;
    color: #0023a7;
}

.bc-tab.active {
    background: #0023a7;
    border-color: #0023a7;
    color: #ffffff;
}

/* ====== TABLE / ROWS ====== */

.bc-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d0d7e2;
    padding: 16px 18px;
    border-radius: 10px;
    gap: 20px;
}

/* ====== LEFT SIDE (MIN + PERCENT + FS) ====== */

.bc-left {
    flex: 1;
}

.bc-left .bc-min {
    font-size: 15px;
    color: #333333;
    margin-bottom: 4px;
}

.bc-left .bc-percent {
    font-size: 22px;
    font-weight: 700;
    color: #000000; /* שחור Bold */
}

.bc-left .bc-fs {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #b33f00;
}

/* ====== INPUT + RESULT ====== */

.bc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 190px;
}

.bc-input-label {
    font-size: 14px;
    color: #555555;
    margin-bottom: 2px;
    text-align: right;
}

.bc-right input {
    width: 180px;
    padding: 10px 12px;
    border: 1px solid #b5c3d6;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.bc-right input:focus {
    border-color: #0023a7;
}

/* כותרת מעל תוצאת הבונוס */
.bc-result-label {
    font-size: 14px;
    color: #555555;
    text-align: right;
}

.bc-result {
    font-size: 18px;
    font-weight: 700;
    color: #000000; /* שחור */
}

@media (min-width: 601px) {
    .bc-result-label {
        margin-right: 10px;
    }
}

/* ====== TOTALS ====== */

.bc-totals {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #d0d7e2;
}

.bc-total-line {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 6px;
    color: #000000; /* שחור */
}

.bc-total-line strong {
    font-weight: 700;
    color: #000000; /* שחור */
}

/* טוטאל בונוס – טיפה יותר מודגש, רק המספר באדום */
.bc-total-line--bonus {
    font-size: 18px;
    font-weight: 700;
}

.bc-total-line--bonus strong {
    color: #b33f00;
}

/* ====== כפתור Start Playing ====== */

.bc-play-wrapper {
    margin-top: 18px;
    text-align: center;
}

.bc-play-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    background-color: #fcc50a;      /* זהב */
    border: 2px solid #fcc50a;
    color: #0023a7;                  /* טקסט כחול */
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.bc-play-btn:hover {
    background-color: #0023a7;
    border-color: #0023a7;
    color: #ffffff;
}

/* ====== טקסט הסבר מתחת למחשבון ====== */

.bc-help-text {
    margin-top: 16px;
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 600px) {
    .brand-calculator-wrapper {
        padding: 18px;
    }

    .bc-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bc-right {
        width: 100%;
        align-items: flex-start;
        min-width: 0;
    }

    .bc-right input {
        width: 100%;
    }

    .bc-play-btn {
        width: 100%;
    }
}