.dictionaryRaam {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: auto;
}
.dictionary {
    position: relative;
    border: none;
    width:95%;
    left: 0;
    padding-top: 30px;
    max-width: 1000px;
    margin: auto;
}
.red{
    color:#FF0000;
}
.blue{
    color:#0073ea;
}
.dictTable{
    border: 0 solid var(--main-color1);
    border-collapse: collapse;
    color: var(--gray3);
    line-height: 1.3;
    margin-left:10px;
    width: 100%;
}
.dictTable td{
    max-width: 350px;
    border-bottom: 1px solid var(--main-color1-10);
    padding: 8px 8px 8px 20px;
}
.dictTable th{
    background-color: var(--main-color1-10);
    padding: 10px 10px 10px 20px;
    text-align: center;
    color: var(--gray3);
}
.input-txt[type=text]{
    border: 1px solid var(--main-color1);
    text-align: left;
    padding:5px;
    margin-left: 10px;
}

.input-txt[type=text]:focus {
    outline: none;
    border: 2px solid var(--main-color1);
}

.dictForm{
    padding-top: 40px;
    display: inline-flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap:30px;
}
.buttonOK {
    font-weight: bold;
    padding: 5px 15px 5px 15px;
    border: none;
    outline: none;
    background-color: var(--main-color1);
    color: #FFF;
}


@media screen and (max-width: 750px), screen and (max-device-width: 750px),screen and (orientation: portrait) {
    .dictionary{
        font-size: 80%;
        width: 95%;
    }
    .dictTable{
        line-height: 1;
        margin-left:0;
    }
    .dictTable td{
        max-width: fit-content;
        padding: 3px;
    }
    .dictTable th{
        padding: 3px;
    }
}