/* Basic Modal Menu Styles */
#menu {
    z-index: 1050;
}

#menu .modal-dialog {
    margin: 0;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
}

#menu .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
}

#menu .modal-header {
    background: #f8f9fa;
    padding: 15px;
}

#menu .modal-body {
    padding: 15px;
}

#menu .items {
    margin: 0;
    padding: 0;
    list-style: none;
}

#menu .items a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

#menu .items a:hover {
    background: #f8f9fa;
}

.modal-backdrop {
    z-index: 1040;
}

/* Fix for modal animation */
#menu.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

#menu.show .modal-dialog {
    transform: translateX(0);
}