header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
}

.slideshow-container {
    position: relative;
    max-width: 300px; /* เปลี่ยนขนาดสูงสุดของสไลด์ */
    margin: auto;
}

.slide {
    display: none;
    position: relative;
}

img {
    width: 100%; /* รูปภาพจะเต็มความกว้างของสไลด์ */
    max-height: 400px; /* ตั้งค่าความสูงสูงสุดของรูปภาพ */
    border-radius: 8px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transform: translateY(-50%);
}

.next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
