
#manual-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    overflow: hidden;
    position: absolute;
    top: 0;

}



#manual-body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(
        circle at 30% 50%,       /* Sets the center of the gradient off-center for visual interest */
        var(--accent-def) 0%, 
        var(--accent-highlight) 40%, 
        var(--accent-muted) 70%, 
        var(--accent-def) 100%   /* Back to the starting color for a closing ring */
    );
    background-position-y: 0%;
    background-size: 100% 100%;
    opacity: 0.2; /* Adjust the opacity to your preference */
    z-index: 0; /* Position the gradient behind the content */
}


.help-main-container{
    width: calc(100% - 70px);
    max-width: 1000px;
    border-radius: 10px;
    padding: 30px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top : 0;
    height: 100vh;



}

.help-main{
    padding-top: 20px;
    width: 100%;
    max-width: 800px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px var(--shadow-color);
    margin-bottom: 20px;
}

.help-page{
    width: calc(100% - 48px);
    padding: 0px 10px;
    max-width: 800px;
    backdrop-filter: blur(10px);
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--accent-def);
    
    border-radius: 5px;
    box-shadow: 0px 5px 10px var(--shadow-color);
    margin-bottom: 20px;
}

.help-video-container{
    width: 100%;
    display: flex;
    justify-content: center;
    
}
.help-video-container video{
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px var(--shadow-color);

}

.help-img-container{
    width: 100%;
    display: flex;
    justify-content: center;
    
}

.help-img-container img{
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px var(--shadow-color);
}

.-help-ui-element{
    width: 100%;
}

.help-suptitle{
    font-size: 1.5em;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--text-color);
}

.help-text{
    font-size: 1.2em;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 20px;
}


.help-side-split-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    
}

.help-side-split-left{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.help-side-split-right{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.help-title-contianer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: calc(100% - 20px - 30px);
    flex-direction: row;
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-highlight);
    border-radius: 10px;
}

.help-title-inner-contianer{
    width: calc(100% - 20px);
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 10px;
}

.help-title-icon{
    height: 4em;
    margin-right: 10px;
    display: flex;
}

.help-title{
    font-size: 3em;
    color: var(--text-color);
    margin-left: 20px;
    text-align: left;

}

.manual-title{
    font-size: 1.4em;
    color: var(--text-color);
    text-align: left;
    padding: 1em;

    
}

.help-subtitle{
    display: flex;
    justify-content: space-between;
    font-size: 2em;
    height: 50px;


}
.help-subsubtitle{
    display: flex;
    justify-content: space-between;
    font-size: 1em;
    height: 30px;


}

.help-ui-element{
    border : 1px solid var(--accent-def);
    border-radius: 8px;
    background-color: transparent;
    
}

.help-text{
    text-align: justify;
    padding: 5px;
}


.help-sub-page{
    background-color: transparent;
    border : 1px solid var(--accent-def);
    width: calc(100% - 20px);
    padding: 0px 10px;
}






    /* Container for the shortcut + description */
    .shortcut {
        display: flex;
        align-items: center;
        margin: 0.5rem 0;
      }
  
      /* Grouping multiple keys together */
      .shortcut-keys {
        margin-right: 1rem; /* space between keys and the text */
      }
  
      /* Individual key styling */
      .key {
        display: inline-block;
        padding: 0.2rem 0.6rem;
        margin: 0 0.2rem;
        font-family: "Courier New", Courier, monospace;
        font-size: 0.9rem;
        border: 1px solid var(--accent-def);
        border-radius: 4px;
        background-color: var(--background-color);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        color: var(--text-color);
      }
  
      /* Description text styling */
      .shortcut-description {
        color: #333;
        font-size: 0.9rem;
      }

.manual-page-title{
    font-size: 3em;
    color: var(--text-color-accent );
}

@media screen and (max-width: 1000px) {
    .help-side-split-container{
        flex-direction: column;
        align-items: center;
    }
    .help-side-split-left, .help-side-split-right{
        width: 100%;
        margin-bottom: 20px;
    }
    .help-side-split-right{
        margin-bottom: 0;
    }
    .help-video-container{
        width: 100%;
        margin-bottom: 20px;
    }
    
}


.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0.3em 0.6em;
    border-radius: 0.4em;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    font-weight: 500;
    font-size: 0.95em;
    white-space: nowrap;
  }
  
  .page-badge img {
    width: 1em;
    height: 1em;
  }
  