/* Popout Sidebar Styles */
#popout-sidebar {
    position: fixed;
    right: -370px;
    top: 0;
    width: 350px;
    height: 100%;
    background: #fff;
    color: white;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto; /* Add scroll if content overflows */
}

#popout-sidebar.open {
    right: 0;
}

#popout-sidebar .widget-container {
    margin-bottom: 20px;
    background: ;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#popout-sidebar h3.widget-title {
    color: #272626;
    border-bottom: 1px solid #666;
    padding-bottom: 5px;
}

#popout-sidebar p {
    color: ;
}
#popout-sidebar a {
    text-decoration: underline;
}

#open-sidebar {
    position: fixed;
    rotate: 270deg;
    right: -50px;
    top: 220px;
    background: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
}

#open-sidebar:hover {
    background: #005a87;
}
