.olp-tabs {
    margin-top: 20px; 
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.olp-tabs .olp-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.olp-tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.olp-tab-buttons button {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
}

.olp-tab-buttons button.is-active {
    background: #f3f3f3; 
}

.olp-tab-panel {
    display: none;
    height: 240px;
    overflow: auto;
}

.olp-tab-panel.is-active {
    display: block;
}

.olp-grid {
    display: grid; gap: 10px;
}

.olp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px; 
}

.olp-item .olp-item-name {
    /* font-weight: bold; */
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
}

.olp-item .price {
    font-size: 16px;
    color: red;
    margin-top: 3px;
    font-weight: bold;
}