div.rich-editor {
  width: 100%;
  min-height: 200px;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.toolbar {
  background-color: #f8f9fa;
  padding: 5px;
  display: flex;
  gap: 5px;
}

.toolbar span.divider {
  border-left: solid 1px black;
}

.toolbar button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
   height: 25px;
   width: 25px;
}

.toolbar button img {
   object-fit: cover;

}

.toolbar button:hover {
  background-color: #f0f0f0;
}

.toolbar select {
  background: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}

.toolbar select:hover {
  background-color: #f0f0f0;
}

select[name="drpFontName"] {
  width: 110px;
}
select[name="drpFontSize"] {
  width: 150px;
}

.rich-editor-bold {
  font-weight: bold;
}

.rich-editor-italic {
  font-style: italic;
}

.rich-editor-underline {
  text-decoration: underline;
}

.rich-editor-strikethrough {
  text-decoration: line-through;
}

/* for span tag in editor content*/

.rich-editor-font-family-arial {
  font-family: Arial, Helvetica, sans-serif; 
}

.rich-editor-font-family-georgia {
  font-family: Georgia, Times, "Times New Roman", serif;
}

.rich-editor-font-family-courier {
  font-family: Courier, "Courier New", monospace;
}

.rich-editor-font-family-verdana {
font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* for span tag in editor content*/

.rich-editor-font-size-xx-small {
  font-size: xx-small;
}

.rich-editor-font-size-x-small {
  font-size: x-small;
}

.rich-editor-font-size-small {
  font-size: small;
}

.rich-editor-font-size-normal {
  font-size: medium;
}

.rich-editor-font-size-large {
  font-size: large;
}

.rich-editor-font-size-x-large {
  font-size: x-large;
}

.rich-editor-font-size-xx-large {
  font-size: xx-large;
}

/* for span tag in editor content*/

.rich-editor-font-color-white {
  color: white;
  text-decoration-color:white;
}

.rich-editor-font-color-black {
  color: black;
  text-decoration-color: black;
}

.rich-editor-font-color-red {
  color: red;
  text-decoration-color: red;
}

.rich-editor-font-color-orange {
  color: orange;
  text-decoration-color: orange;
}

.rich-editor-font-color-yellow {
  color: yellow;
  text-decoration-color: yellow;
}

.rich-editor-font-color-green {
  color: green;
  text-decoration-color: green;
}

.rich-editor-font-color-blue {
  color: blue;
  text-decoration-color: blue;
}

.rich-editor-font-color-purple {
  color: purple;
  text-decoration-color: purple;
}

.rich-editor-font-color-darkteal {
  color: #005B5B;
  text-decoration-color: #005B5B;
}

.rich-editor-font-color-capri {
  color: #0099ff;
  text-decoration-color: #0099ff;
}

/* for span tag in editor content*/

.rich-editor-back-color-white {
  background-color: white;
}

.rich-editor-back-color-black {
  background-color: black;
}

.rich-editor-back-color-red {
  background-color: red;
}

.rich-editor-back-color-orange {
  background-color: orange;
}

.rich-editor-back-color-yellow {
  background-color: yellow;
}

.rich-editor-back-color-green {
  background-color: green;
}

.rich-editor-back-color-blue {
  background-color: blue;
}

.rich-editor-back-color-purple {
  background-color: purple;
}

/* for div tag in editor content*/
.rich-editor-text-align-center {
  text-align: center;
}

.rich-editor-text-align-left {
  text-align: left;
}

.rich-editor-text-align-right {
  text-align: right;
}

.rich-editor-indent {
    padding-left:25px;  
}

tr {
    vertical-align:top;
}

a {
   text-decoration:none;
}

.rich-editor-text-reset {
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-family: initial;
    font-size: initial;
    color: initial;
    background-color: transparent;  
}