﻿.message-box {
    position: fixed;
    z-index: 9999;
    min-width: 150px;
    top: 100px;
    right: 50px;
    min-height: 50px;
    border-radius: 10px;
    max-height: fit-content;
}

    .message-box p {
        color: #fff;
        font-size: 14px;
        padding: 10px 15px;
        margin-top: 10px;
        margin-right: 15px;
    }

.message-box-default {
    background-color: #949191;
}

.message-box-success {
    background-color: #599b4c;
}

.message-box-failed {
    background-color: #e54444;
}

.message-box-warning {
    background-color: #ef7a36;
}

.message-box-close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width:576px) {
    .message-box {
        right: 0;
        left: 0;
        bottom: 30px;
        margin: auto;
        width: 90%;
        max-height: fit-content;
    }
    .subPageContent .subPageText .pageContent .articleListWrapper li {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

th, td {
    padding: 20px;
}

.table-dictionary {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    color: #444444;
    line-height: 1.4;
}

.th-dictionary {
    background-color: #f2f2f2;
    color: #444444;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media only screen and (min-width: 640px){
    .th-dictionary {
        font-size: 22px;
    }
}

.group-dictionary {
    background-color: #f2f2f2;
    font-weight: bold;
    font-size: 20px;
    color: #444444;
}

.border-dic {
    border-bottom: solid #fff 2px;
}