/* ตัวโหลด */
div#load_screen {
    background: rgb(236, 239, 255); /* สีพื้นหลัง */
    opacity: 1;
    position: fixed;
    z-index: 999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column; /* จัดเรียงแนวตั้ง */
    align-items: center;
    justify-content: center;
}

/* โลโก้ */
div#load_screen .loading-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; /* ทำให้โลโก้ไม่เกินขนาด */
    /* โลโก้จะไม่หมุน */
    animation: none;
}

/* ตัวหมุนวงกลม */
div#load_screen .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.2); /* ขอบด้านนอกจาง */
    border-top: 4px solid #B49680; /* ขอบด้านบนสีที่ต้องการ */
    border-radius: 50%; /* ทำให้เป็นวงกลม */
    animation: spin 1s linear infinite; /* เพิ่มการหมุน */
}

/* อนิเมชันการหมุน */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
