/* Membership Clubs Popup Styles */

#clubs-popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.clubs-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.clubs-popup-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.clubs-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.clubs-popup-close:hover {
  background: #f0f0f0;
  color: #333;
}

.clubs-popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.8em;
  color: #333;
  text-align: center;
}

.clubs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.club-item {
  display: flex;
  gap: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.club-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.club-image {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.club-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.club-info h4 {
  margin: 0 0 10px 0;
  font-size: 1.3em;
  color: #333;
}

.club-info p {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
  flex: 1;
}

.club-price {
  font-size: 1.1em;
  font-weight: bold;
  color: #F72585;
  margin: 10px 0 !important;
}

.club-enroll-btn {
  background-color: #F72585;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
  margin-top: 10px;
}

.club-enroll-btn:hover {
  background-color: #d11c6f;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .clubs-popup-content {
    padding: 20px;
    max-height: 95vh;
  }

  .clubs-popup-content h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-right: 40px;
  }

  .club-item {
    flex-direction: column;
    gap: 15px;
  }

  .club-image {
    width: 100%;
    height: 150px;
  }

  .club-enroll-btn {
    width: 100%;
  }
}

/* Scrollbar styling */
.clubs-popup-content::-webkit-scrollbar {
  width: 8px;
}

.clubs-popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.clubs-popup-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.clubs-popup-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
