@font-face {
    font-family: 'overlock';
    src: url('/fonts/Overlock_SC/OverlockSC-Regular.ttf') format('truetype');
    font-size: normal;
    font-weight: normal;
    font-style: normal;
    font-display: swap;

    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 20%;
    line-gap-override: 0%;
}

:root {
    --q: #000000;
    --w: #eff0f1;
        --w2: #eff0f133;
        --w4: #eff0f166;
        --w6: #eff0f199;
        --w8: #eff0f1cc;
    --a: #2daea6;
        --a2: #2daea633;
        --a4: #2daea666;
        --a6: #2daea699;
        --a8: #2daea6cc;
    --s: #eff0f1;
    --d: #122431;
    --f: #7e7e7e;
        --f2: #7e7e7e33;
        --f4: #7e7e7e66;
        --f6: #7e7e7e99;
        --f8: #7e7e7ecc;
}

* {
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-weight: normal;
    text-rendering: optimizeSpeed;
    /* outline: 1px solid #ff0000; */
}
*:focus-visible {
    outline: 2px solid var(--a);
    outline-offset: 1px;
}
/* *:focus:not(:focus-visible) {
    outline: none;
} */
/* p {
    line-height: 1.5rem;
} */
button, .button {
    background: none;
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    touch-action: manipulation;
    cursor: pointer;
}
input,select,textarea {
    background: none;
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: 1;
}
a {
    /* color: #ffffff; */
    color: #000000;
}
html, body {
    max-width: 100%;
    overflow: visible;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: 'overlock', sans-serif;
    color: var(--q);
    line-height: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--w);
}

.guestbook {
    width: 100%;
}
.guestbook .table {
    width: 100%;
    padding: 0;
    overflow-x: scroll;
}
.guestbook .table table {
    table-layout: auto;
    min-width: 100%;
}
.guestbook .table table {
    font-size: 20px;
}
.guestbook .table table .header {
    position: sticky;
    top: 0;
}
.guestbook .table table tr {
    background-color: #f5f5f5;
}
.guestbook .table table tr:nth-child(even) {
    background-color: #ffffff;
}
.guestbook .table table th {
    text-align: left;
    padding: 10px;
    white-space: nowrap;
}
.guestbook .table table td {
    padding: 0;
}
.guestbook .table table td input {
    width: auto;
    min-width: 100%;
    padding: 12px;
    font-size: inherit;
    font-family: inherit;
}

.guestbook .bottom {
    /* padding: 12px; */
    position: fixed;
    width: 100%;
    bottom: 12px;
    /* right: 50%;
    transform: translateX(50%); */
    pointer-events: none;
    opacity: 0.8;
}
.guestbook .bottom p {
    margin: 0;
}
.guestbook .bottom .count {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.guestbook .bottom .count div.ltc {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 25px;
    background-color: aqua;
}
.guestbook .bottom .count div.ltg {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 25px;
    background-color: palegreen;
}
/* .guestbook .bottom .count table {
    table-layout: auto;
    border-collapse: collapse;
}
.guestbook .bottom .count table td {
    padding: 12px;
} */
