.slide-panel-svoz {
    position: fixed;
    top: 0;
    right: -720px;
    width: 700px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 10000;
    overflow-y: auto;
}

.slide-panel-svoz.open {
    right: 0;
}

.panel-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

.panel-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
}

.close-slide-panel {
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
}

.close-slide-panel:hover {
    background: rgba(200, 5, 39, 0.1);
    color: #01b3b5;
}

.close-slide-panel {
    color: #01b3b5;
}


@media (max-width: 768px) {
    .slide-panel-svoz {
        width: 90%;
        max-height: 100vh;
        overflow-y: auto;
    }

    .panel-content {
        max-height: calc(100vh - 50px);
        overflow-y: auto;
    }
}