.program-detail-page .program-compare .acc-btn span,
.program-detail-page .program-options .acc-btn span {
    width:auto !important;
}

.program-detail-page .accordion .acc-btn {
    justify-content: flex-start !important;
}
.program-detail-page .program-compare-value {
    display: flex;
    justify-content: flex-start !important;
}
.program-detail-page .program-compare-value .tooltip {
    margin-left:10px;
}
.program-detail-page .accordion .acc-item:last-child {
    border-bottom: 1px solid #eef1f6;
}
.program-options-section .prices-list .prices-list-item {
    border-bottom: 1px solid var(--border-devider);
    padding: 16px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 196px;
}


/* Стили для модального окна выбора предложений */
.tariff-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tariff-modal {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}
.tariff-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    padding: 0;
    line-height: 1;
}
.tariff-modal-close:hover {
    color: #333;
}