/* Modal Dialog Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
  overflow: hidden;
  padding: 1rem;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-dialog {
  background: white;
  border-radius: 0;
  max-width: 800px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease-out;
}

.modal-overlay.show .modal-dialog {
  transform: scale(1);
}

.modal-header {
  background: #D1CAB6;
  color: #000000;
  padding: 1rem;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-status {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.modal-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #F7EDDC;
  border-radius: 0;
  border-left: 4px solid #000000;
}

.event-detail-content {
  flex: 1;
}

.event-detail-label {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.event-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.availability-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0;
  margin: 1rem 0;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-active {
  background: #6B8E6B;
  color: white;
  border: 2px solid #6B8E6B;
}

.status-few {
  background: #D4A76B;
  color: #4A4A4A;
  border: 2px solid #D4A76B;
}

.status-full {
  background: #C17A5A;
  color: white;
  border: 2px solid #C17A5A;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #000000;
  color: white;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: #333333;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
  background: #000000;
  color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
} 