.test-meta {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #2c3e50;
}

.medium-label {
  display: inline-block;
  background-color: #e3f2fd;
  color: #1565c0;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.medium-green-label {
  display: inline-block;
  background-color: #28b463;
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.schedule-download {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* spacing between icon and text */
  margin-top: 10px;
  margin-left: 60px;
  font-size: 0.95rem;
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
}

.schedule-download svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.schedule-download:hover {
  text-decoration: underline;
}

.strike-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
  font-size: 1.1rem;
}

.actual-price {
  color: red;
  font-size: 1.3rem;
  font-weight: bold;
  
}

.custom-tick-list {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #34495e;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    list-style: none;
    padding-left: 1.2em;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.custom-tick-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
}

.custom-tick-list li::before {
    content: "✓";
    color: green;
    position: absolute;
    left: 0;
    top: 0;
}

.adv{
    display: block;
    border-radius: 8px;
    padding: 10px;
    margin: 10px;
}
.adv a{
    margin: 10px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 19px;
    display: inline-block;
    background-color: #17202a;
    color: white;
    padding: 10px;
    border-radius: 10px;
}
.adv a:hover{
    background-color: #2c3e50;
}


/* Modal */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: flex-start;
  padding: 40px 10px;
  box-sizing: border-box;
}

/* Modal Content */
.popup-content {
  background: #fff;
  padding: 30px;
  max-width: 1000px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  box-sizing: border-box;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
.close-btn:hover { color: #d33; }

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.thumbnail:hover {
  transform: scale(1.03);
}

/* Keep existing modal styles... */

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.lightbox-arrow.left { left: 20px; }
.lightbox-arrow.right { right: 20px; }

.lightbox-arrow:hover,
.lightbox-close:hover {
  color: #ff5c5c;
  background: rgba(255, 255, 255, 0.1);
}


  @media (max-width: 768px) {
    .payment-container {
      margin: 20px 15px;
      padding: 20px 25px;
    }
   
    input#discount-code {
      width: 100%;
      margin-bottom: 10px;
    }
    button#apply-discount {
      width: 100%;
      margin-left: 0;
    }
  }