﻿section.side-modal {
    position: fixed;
    top: 75px;
    right: 0px;
    width: 400px;
    height: 90vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
    padding: 10px;
    display: none;
}

    section.side-modal.open {
        transform: translateX(100%);
        right: 400px;
        display: block;
    }

    section.side-modal .close-btn {
        top: 10px;
        left: 10px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }

    section.side-modal .side-modal-content {
        margin-top: 10px;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: calc(90vh - 70px);
        padding: 5px;
    }

    section.side-modal .side-modal-header {
        display: flex;
        justify-content: space-between;
    }
