/* Decision Makers Luncheon Form Styles */

.ws-luncheon-form {
  max-width: 900px;
  margin: 0 auto;
}

.ws-slots-info {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--surface-light);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-size: 0.95rem;
}

.ws-slots-info p {
  margin: 0;
  color: var(--charcoal);
}

.ws-slots-info strong {
  color: var(--primary-color);
}

.ws-slots-info #slotsCount {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.ws-slots-info.ws-slots-low {
  border-color: #dc3545;
  background: #fff5f5;
}

.ws-slots-info.ws-slots-low strong,
.ws-slots-info.ws-slots-low #slotsCount {
  color: #dc3545;
}

.ws-slots-info.ws-slots-full {
  border-color: #6c757d;
  background: #f8f9fa;
  opacity: 0.7;
}

.ws-slots-info.ws-slots-full strong,
.ws-slots-info.ws-slots-full #slotsCount {
  color: #6c757d;
}

/* Date selection styling */
#luncheonDate {
  font-size: 1rem;
}

#luncheonDate option:disabled {
  color: #6c757d;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ws-luncheon-form {
    padding: 0 16px;
  }
  
  .ws-form-group {
    padding: 24px 16px;
  }
}

