#para {  
      font-family: Arial, sans-serif;  
  }  

  #textContainer {  
    flex: 1;  
    position: relative;  
}  

.highlight {  
    background-color:lightblue;  
    color: black;  
}  

.highlight-yellow {  
    background-color: yellow;  
}  

#contextMenu {  
    display: none;  
    position: absolute;  
    border: 1px solid #ccc;  
    background-color: white;  
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);  
    z-index: 1000;  
}  

#contextMenu ul {  
    list-style-type: none;  
    margin: 0;  
    padding: 10px;  
}  

#contextMenu li {  
    padding: 8px 12px;  
    cursor: pointer;  
}  

#contextMenu li:hover {  
    background-color: #f0f0f0;  
}  

#sidebar {  
    margin-top: 5%;
    width: 300px;  
    height: 100%;  
    background-color:rgba(178, 213, 237);
    border-left: 1px solid #ccc;  
    position: fixed;  
    right: -400px; /* Initially hidden */  
    top: 0;  
    transition: right 0.3s;  
    padding: 20px;  
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);  
}  

#sidebar h2 {  
    margin-top: 10;  
}  

#closeButton {  
    cursor: pointer;  
    color: black;  
    float: right;  
}  

#deleteButton {  
    margin-top: 10px;    
    border: none;  
    padding: 10px;  
    cursor: pointer;  
    float: right;  
    background-color:rgba(178, 213, 237);
}  
.icon-button {  
        display: flex;  
        align-items: center;  
        padding: 0.5rem;  
        border: none;  
        background: none;  
        cursor: pointer;  
    }  
    .icon-button img {  
        width: 20px;  
        height: 20px;  
        margin-right: 0.5rem;  
    }  

    .centercontent {  
    align-items: center;  
}  

.centersection {  
    display: none; /* Hide all sections by default */ 
    
}  


div:empty:not(:focus):before {
content: attr(data-index);
color: black;
}
 .sectionh {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.label {
    margin: 5px 0;
    padding: 10px;
    border: 1.5px dashed lightblue;
    background-color: #fff;
    text-align: center;
    height: 40px;
    cursor: move;
    user-select: none;
}
.Hlabel {
    margin: 5px 0;
    padding: 10px;
    border: 1.5px solid lightgray;
    background-color: #fff;
    text-align: left;
    height: 40px;
    cursor: move;
    user-select: none;

}


