tr,
td {
    border: solid 1px rgb(255, 255, 200);;
    padding: 20px;
    background-color: rgb(44, 44, 44);
    border-radius: 8px;
    white-space: nowrap;
    transition: 0.3s;
}

table {
    border: solid 2px rgb(255, 255, 180);
    padding: 4px;
    /* border-collapse: collapse; */
    border-radius: 15px;
    cursor: default;
    user-select: none;
}

* {
    font-family: 'Noto Sans Thai', sans-serif;
    font-family: 'Mitr', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    background-color: rgb(24, 24, 24);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    transition: 0.1s;
    flex-direction: column;
}

tr,td:hover {
    padding: 40px;
    background-color: rgb(22, 22, 22);
    font-size: 20px;
}

body:has(tr:hover) {
  background-color: white;
}

.warning-container{margin-bottom: 20px;}
.warning-container > i {font-size: 80px}