/* 🌐 Global Styles */
body {
    font-family: 'Prompt', sans-serif;
    background-color: #1e466b;
    margin: 0;
    position: relative;
    min-height: 100vh;
}

.wrapper {
    min-height: 5vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Synctech_logo.png');
    background-repeat: repeat;
    background-size: 50px 50px;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}
/* ปรับตำแหน่งปุ่ม Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px; /* ขยับให้อยู่เหนือ footer */
    right: 30px;  /* ขยับไปทางขวา */
    z-index: 1000;
    background-color: #3B82F6;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* ซ่อนปุ่มก่อน */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* เพิ่มลูกเล่นเมื่อ hover */
.back-to-top:hover {
    background-color: #2563EB;
    transform: scale(1.1);
}

/* Responsive ปรับให้ปุ่มขนาดเล็กลงเมื่อจอแคบ */
@media (max-width: 768px) {
    .back-to-top {
        padding: 10px 15px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}