.header-image {
    background-image: url('images/nikki_header.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  }
  
  
  .specs-column {
    border: 1px solid #ccc;
    padding: 15px;
    margin: 0 10px 20px 0;  /* หรือ margin: 0 auto; */
    border-radius: 8px;
    box-sizing: border-box; /* สำคัญมาก เพื่อให้ padding นับรวมใน width */
  }

  .thumbnail-img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .thumbnail-img:hover {
    transform: scale(1.05);
  }

  /* ปรับ navbar */
.navbar {
  background-color: #8abcc1;
}

/* ปรับ footer */
footer {
  background-color: #8abcc1;
}

  /* ปรับแต่งสไตล์การ์ดดาวน์โหลด */
.download-card {
  border: 2px solid #8abcc1;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.download-card .btn-link {
  color: #8abcc1;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  display: block;
  margin-top: 10px;
}

.download-card .btn-link:hover {
  color: #6a9fae;
}

.card-body i {
  color: #8abcc1;
}

  