.annotation-content, .annotation-contents {
  font-family: 'Inter', sans-serif;
  font-size: 1.5em;

  & > * > .title {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background-color: #000100;
    color: white;
    border: 5px solid #000000;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px;

    .icon {
      flex: 0;
      height: 32px;
      margin-right: 5px;
    }
        blockquote {
      font-size: 0.8em;
      line-height: 0.2em;
    }
  }

  & > * > .content, & > * > .contents, & > * > .description {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 300px;
    background-color: transparent;
    color: white;
    border: 5px solid #000000;


    padding: 0 15px 15px 15px;

    h1, h2, h3 {
      font-size: 1.5em;
      padding: 0;
      margin: 0;
    }

    h4 {
      font-size: 1em;
      padding: 0;
      margin: 0;
    }

    p {
      padding: 0;
      margin: 0;
    }




    .separator-1 {
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
      margin: 10px 0;
    }

    .separator-2 {
      height: 1px;
      background: rgba(255, 255, 255, 0.8);
      margin: 10px 0;
    }


  }

  .warning, .caution, .note {
    background-color: #000000;
    border-color: #000000;
    border-radius: 0;
    border-width: 5px;
    font-size: 0.8vw;

    & > .title {
      font-weight: bold;
      font-size: 1.2em;
    }

    & > .content, & > .contents, & > .description {
      font-size: 1.2em;
    }

    .bordered-table {
      border: 2px solid black;
      border-collapse: collapse;
      width: 100%;
      background-color: #eee;
      color: black;

      th, td {
        border: 1px solid black;
        padding: 5px;
        text-align: left;
        font-size: 0.8vw;
      }

      &.text-center {
        text-align: center;

        th, td {
          text-align: center;
        }
      }
    }

    .separator-1 {
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
      margin: 10px 0;
    }

     .separator-2 {
      height: 1px;
      background: rgba(255, 255, 255, 0.8);
      margin: 10px 0;
    }

     .separator-3 {
      height: 1px;
      background: rgba(0, 0, 0, 0.8);
      margin: 10px 0;
    }
  }
}

/* 화면 하단 매뉴얼 패널 */
.instruction-text[data-theme="kia-ev6"] {
  a {
    color: #00E5FF;
    text-decoration: none;

    &:active, &:focus, &:visited {
      color: #00E5FF;
    }

    &:hover {
      color: orange;
      text-decoration: underline;
    }
  }

}