@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

body {
    margin: 0;
    /*justify-items: center;*/
    font-family: "Inter", Helvetica, Arial, sans-serif;
}

.main {
    display: flex;
    height: 100vh;
    flex-direction: row;
}

/* не используется */
.panel {
    width: "100%";
    max-width: 600px;
    position: relative;
    display: flex;
    justify-items: stretch;
    align-items: top;
    margin: 20px;
    overflow: hidden;
}

/* не используется */
.bar {
    position: sticky;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    max-width: 300px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.footer {
    background-color: white;
    font-family: "Inter", Helvetica;
    font-size: 12pt;
    color: black;
    position: fixed;
    text-align: center;
    justify-self: center;
    width: 100%;
    bottom: 0px;
    padding-bottom: 4px;
    height: fit-content;
}

/* не используется */
.text-multiline-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .historyRecordCard {
    background-color: white;
    box-sizing: border-box;
    height: 110px;
    aspect-ratio: 16/9;
    padding: 2px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-color: black;
    border-radius: 2px;
    border: 5px;
} */

.historyRecordCard:hover {
    background-color: #F3FCFF;
}

/* не используется */
.settings {
    width: 25%;
    height: 100%;
    border: 2px;
    border-color: black;
    /* justify-content: center; */
    padding: 10px;
    vertical-align: "top";
}

/* не используется */
.thesarus {
    width: 40%;
    padding: 0px;
    height: 20%;
    border: 2px;
    border-color: black;
}

/* не используется */
.rewrite {
    padding: 0px;
    border-color: black;
}

/* не используется */
.output {
    width: 100%;
    border: 2px;
    border-color: black;
    justify-self: right;
}

/* не используется */
.editorInput {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 0;
}

/* не используется */
.editor-par-source {
    opacity: 75%;
}

/* не используется */
editor-par-source :hover {
    opacity: 25%;
}


.initialTextInputField :hover {
    border-color: rgba(0, 136, 187, 1);
    transition: border-color 0.25s;
}

[hint] {
  position: relative;
  cursor: hint;
}

[hint]::after {
    opacity: 0;
    width: 200px;
    text-wrap: balance;
    color: #FFFFFF;
    background-color: rgba(0,0,0,.7);
    border-radius: 6px;
    padding: 10px;
    content: attr(hint);
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    overflow: visible;
    position: absolute;
    top: -5px;
    left: 100px;
    transform: translate(-50%, -100%);
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}

[hint]:hover::after {
    opacity: 1;
}