﻿button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.dimwegogo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
}

.popup {
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: none;
  z-index: 200;
  transition: top 0.3s ease;
}

.popup.active {
  display: block;
  top: 20%;
}

.popup-content {
    text-align: center;
  }

  
.popup-content h2 {
  margin-top: 0;
  text-align: center;
}

.close-btn {
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 14px;
  background: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.sliderwegogo {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
}

.slideswegogo {
  display: flex;
  transition: transform 0.5s ease;
}

.slideswegogo img {
  width: 100%;
  border-radius: 8px;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 300;
}

.prev-btn {
  left: 0px;
}

.next-btn {
  right: 0px;
}

@media (max-width: 767px) {
  .popup {
    position: fixed;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    z-index: 200;
    transition: top 0.3s ease;
}
}
