#overlay-for-dialog-highlights-notes {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#dialog-highlights-notes {
    display: flex;
    overflow: auto;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 1001;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0.375rem;
}

#dialog-highlights-notes .header-dialog {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
}

#dialog-highlights-notes .title-dialog {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 15px;
    line-height: 1.5rem;
    font-weight: 500;
    color: #000;
}

#dialog-highlights-notes .icon-close-container {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.75rem;
}

#dialog-highlights-notes .icon-close {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 1.5rem;
    width: 1.5rem;
    display: block;
    cursor: pointer;
}

#dialog-highlights-notes .main-content-dialog {
    margin: 1.5rem 0;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.5rem;
}

#dialog-highlights-notes .label-highlight-actions {
    margin: 0;
    padding: 0.875rem 0.75rem;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    border-radius: 0.375rem;
    background-color: #fff;
    color: rgb(51 51 51);
    border: 1px solid #ddd;
}

#dialog-highlights-notes .label-highlight-actions:hover {
    background-color: #f8f8f8;
}

#dialog-highlights-notes .icon-container-highlight-actions {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dialog-highlights-notes .svg-icon-highlight-actions {
    height: 1.5rem;
    width: 1.5rem;
    display: block;
    color: #555;
}

#dialog-highlights-notes .spans-container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    margin-left: 0.75rem;
    justify-content: center;
}

#dialog-highlights-notes .span-1 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    /* letter-spacing: 0.020em; */
}

#dialog-highlights-notes .span-2 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    font-size: 11px;
    font-weight: 400;
    /* letter-spacing: 0.020em; */
    color: #555;
}