.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #1E1E1E;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #333;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.4) 0 4px 20px;
}

.close-modal {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
  color: #692c72;
  text-decoration: none;
}

.modal-title {
  margin-top: 0;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 20px;
}

.current-item {
  background: #2A2A2A;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border-left: 4px solid #692c72;
}

.current-item h4 {
  margin: 0 0 5px 0;
  color: #E0E0E0;
  font-size: 18px;
}

.current-item p {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #692c72;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #B0B0B0;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #333;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #2A2A2A;
  color: #E0E0E0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #692c72;
  box-shadow: 0 0 0 2px rgba(105, 44, 114, 0.2);
}

.form-group input::placeholder {
  color: #666;
}

.submit-btn {
  background-color: #692c72;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #5a2461;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(105, 44, 114, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

#modalItemPrice {
    color: #FFFFFF !important;
}

.current-item p {
    color: #FFFFFF !important;
}

.modal-content .current-item p {
    color: #FFFFFF !important;
}