html {
    height: 100%;
    background-color: var(--color-base);
}

body {
    height: 100%;
    margin: 0;
    background-color: #cccdd4;
    font-family: "Noto Sans Thai", sans-serif;
}

#content {
    background: var(--color-base-color);
    height: 100%;
    margin-bottom: 80px;
    margin : auto;
    overflow: hidden;
    max-width: 412px;
    

}

.navbar {
    background: var(--color-background);
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.p-header-title {
    color: #FFF;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

.about-header {
    padding: 23px 0px 15px 17px;
    box-sizing: border-box;
    border-radius: 0px 0px 15px 15px;
    background:var(--color-background);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.navbar a {
    min-width: 54px;
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: flex;
    flex-direction: column;
}

.navbar .active {
    color: var(--color-focus);
}

.input-container-content input {
    width: 100%;
}

.input-container-content i {
    cursor: pointer;
}

.text-danger {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    margin: 0;
    color: #dc3545;

    height: 10px;
}

.hide {
    display: none !important;
}

.loading-icon-main {
    position: absolute;
    width: 100%;
    background: rgb(220, 220, 220, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
}

.loading-icon-main img {
    width: 50px;
    height: 50px;
    position: relative;
    top: 50%;
    animation: rotateAnimation 2s infinite linear;
}

.bottom-item span {
    color: #C0C0C0;
    margin-top: 5px;
    text-align: justify;
    font-size: 12px;
    font-weight: 700;
}
.bottom-item{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    padding-block-end: 24px;
}
.bottom-item .vertical-divider{
    width: 1px;
    background: #A4A4A4;
    height: 34px;

}


@media (max-width: 768px) {
    .navbar {
        gap: 10px;
    }

    #content {
        background: var(--color-base-color);
    }

    .navbar a {
        padding: 14px 10px;
    }
}


::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}