.price-modal-wrapper {
  text-align: center;
}

.price-modal-btn {
  background-color: #039ad3;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.price-modal-btn:hover {
  background-color: #006400;
}

/* Modal Overlay */
.price-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  padding-top: 60px;
}

/* Modal Content */
.price-modal-content {
  background: #fff;
  margin: auto;
  padding: 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  animation: slideIn 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Close button */
.close-modal {
  color: #999;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.close-modal:hover {
  color: #333;
}

/* Table Styling */
.price-list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.price-list th, .price-list td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.price-list th {
  background: #f2f2f2;
}

/* Terms note */
.terms-note {
  margin-top: 18px;
  font-size: 15px;
  color: #006400;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

@media screen and (max-height: 500px) {
  .price-modal-content {
    max-height: 80vh;
    overflow-y: auto;
  }
}
