.nicEdit-main {font-size:17px;line-height: 1.5em;}
.nicEdit-main ul{margin:0px;}
.nicEdit-main h1{font-size:30px;line-height:1.2em;margin:0px 0px 0px 0px;font-weight:normal;}
.nicEdit-main h2{font-size:26px;line-height:1.15em;margin:0px;font-weight:normal;}
.nicEdit-main h3{font-size:23px;line-height:1.4em;margin:0px;font-weight:normal;}
.nicEdit-main p{}
.nicEdit-main h4{font-size:19px;line-height:1.1em;margin:0px;font-weight:normal;}
.nicEdit-main h5{font-size:15px;line-height:1.3em;margin:0px;font-weight:normal;}
.nicEdit-main h6{font-size:12px;line-height:1.3em;margin:0px;font-weight:normal;}
.nicEdit-main td,th{xborder:1px solid #DDDDDD;padding:5px;}
.nicEdit-main blockquote {margin: 0 !important;padding-left: 40px !important;border: none !important;overflow: hidden !important;background:  !important;} /*fix if the indent has a floated image on left*/

.nicEdit-main ul{margin:5px;}

.RO {
  /*user with contenteditable="false" */
  pointer-events: none;   /* Disallows all clicks, drags, and hovers */
  user-select: none;      /* Prevents the text inside from being highlighted */
}

.blogImage {
    cursor: pointer;
    transition: opacity 0.2s;
}
.blogImage:hover {
    opacity: 0.8;
}

/* Popup Overlay */
#imgPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 20000; /* Higher than NicEdit sticky panel */
    cursor: zoom-out;
}

/* The Popup Image */
#imgPopupOverlay img {
    max-width: 95%;  /* Ensures it doesn't touch screen edges */
    max-height: 95vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 3px solid #fff;
    background-color: #fff;
    cursor: default;
}