/* Sliding Sidebar Styles */
.sliding-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.sliding-sidebar.open {
    right: 0;
}

.sidebar-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 20px 8px;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.sidebar-toggle.sidebar-open {
    right: 350px;
}