    .bonus-history { max-width: 700px; margin: 20px auto; }
    .bonus-balance { font-size: 20px; margin-bottom: 20px; font-weight: bold; }
    .bonus-item { border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
    .bonus-header { display: flex; justify-content: space-between; align-items: center; padding: 15px; cursor: pointer; background: #f8f8f8; }
    .bonus-header .info { display: flex; flex-direction: column; }
    .bonus-header .amount { font-weight: bold; }
    .bonus-header .amount.positive { color: #28a745; }
    .bonus-header .amount.negative { color: #dc3545; }
    .bonus-content { display: none; padding: 15px; background: #fff; }
    .bonus-content-row { margin-bottom: 8px; display: flex; justify-content: space-between; }
    .bonus-content a { color: #007bff; text-decoration: none; }
    .bonus-toggle-icon { transition: transform 0.3s ease; }
    .bonus-item.open .bonus-toggle-icon { transform: rotate(180deg); }
    .bonus-item.open .bonus-content { display: block; }
    
.bonus {
    display: inline-flex;
    flex-direction: column;
}
.bonus:hover .bonus__popup-desktop{
    opacity: 1;
}

.bonus__popup-desktop {
    z-index: 99;
    position: absolute;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #ffF;
    top: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#new-bonus-section, #bonus-section, #coupon-form {
    padding: 18px;
    background-color: #fff;
    border-radius: var(--wd-brd-radius);
}

#new-bonus-section p, #bonus-section p{
    margin: 0px;
}

.bonus-input-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}