input {
    autocomplete: off !important; /* May not work consistently in all browsers */
  }
  
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
}

html {
    scroll-behavior: smooth !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

img, svg {
    pointer-events: none !important;
}
:root {
    /* ===== Colors ===== */
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    --primary-color: rgba(133, 189, 215, 0.8784313725);
    --primary-color-light: #f0f4ff;
    --toggle-color: #DDD;
    --text-color: #707070;

    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}



::selection {
    background-color: var(--primary-color);
    color: #fff;
}

.nav {
    height: 80px;
    width: 100%;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.nav .slash {
    height: 100%;
    color: #78829D;
    font-weight: 100;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
   }
.nav .left {
    width: 10%;
    padding: 0 30px;
    padding-right: 0;
}

.nav .left img {
    width: 195px;
    height: 60px;
}

.nav .center {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.nav .center ul {
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: start;  
}

.nav .center ul .lilinks {
    min-width: 60px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.nav .center ul .lilinks a {
    text-decoration: none;
    color: #78829D;
    font-size: 18px;
}
.nav .center ul .lilinks a:hover {
    color: #69779c;
    font-weight: bolder;
    transform: scale(1.025);
}
.nav .right {
    width: 20%;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .right .profilenav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .right .profilenav .pro_left {
    margin-right: 10px;
}

.nav .right .profilenav img {
    border-radius: 100px;
    width: 45px;
    height: 45px;
}

.nav .right .profilenav .pro_right {
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.nav .right .profilenav .pro_right .pro_top span {
    text-align: left;
    font-size: 18px;
    color: #78829D;
    margin-bottom: 0;
}

.nav .right .profilenav .pro_right .pro_bottom span {
    text-align: left;
    font-size: 12px;
    color: #78829D;
    margin-bottom: 0;
}
.logoutBtn {
    border: none;
    padding: 5px;
    text-decoration: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
    margin-left: 20px;
}
.logoutBtn i {
    color: #dc354685;
    font-size: 18px;
}
.logoutBtn:hover i{
    color: #dc3546;
}

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1200px) {
    /* Your CSS code for extra large devices */
    .nav .center {
        width: 40%;
    }
    .nav .right {
        width: 30%;
    }
}


@media screen and (max-width: 1000px) {
    .nav .center {
        width: 30%;
    }
    .nav .right {
        width: 40%;
    }
}
@media screen and (max-width: 768px)  {
}
/* Devices with 360px Width (e.g., small mobile phones) */
@media screen and (max-width: 576px)  {
}

@media screen and (max-width: 360px) {
}    
