#lab-container {
    position: relative;
    min-height: 100vh;
    padding-bottom: 120px; /* Footer height + padding */
}

#eventon-content {
    padding: 20px;
}

#lab-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    padding: 20px;
    background-color: #45c1ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
        left: 0;
    box-sizing: border-box;
    z-index: 9;
}

#shortcode-description {
    margin: 0;
    font-size: 14px;
    background-color: #aae3ff;
    border-radius: 20px;
    padding: 3px 15px;
    line-height: 1.5;
}

#next-shortcode , #prev-shortcode, #all-tests{
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    line-height: 1;
    font-size: 14px;
}

#next-shortcode:hover, #prev-shortcode:hover , #all-tests:hover{
    background-color: #005f8a;
}

#all-tests-sidebar {
    position: fixed;
    right: -330px;
    top: 0;
    width: 300px;
    height: calc(100vh - 50px);
    background-color: #fff;
    border-left: 1px solid #ccc;
    padding: 50px 10px 10px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 10;
    box-sizing: border-box;
}

#all-tests-sidebar.open {
    right: 0;
}

#all-tests-sidebar #close-sidebar {
    background: #ff5e57;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    line-height: 1;
}

#shortcodes-list {
    list-style: none;
    padding: 0;
}

#shortcodes-list li {
    margin: 5px 0;
    border-bottom: 1px solid #cbcbcb;
    font-size: 14px;
}

#shortcodes-list li.active a {
    font-weight: bold;
    color: #0073aa;
}

#shortcodes-list a {
    text-decoration: none;
    color: #333;
}

#shortcodes-list a:hover {
    text-decoration: underline;
}