/* Designfreigabe Modal Styles */

.release-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.release-modal-overlay.active {
  display: flex;
}

.release-modal {
  background: #1A1A1A;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 300ms ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.release-modal-header {
  border-bottom: 1px solid #333333;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.release-modal-header h2 {
  font-family: 'Righteous', sans-serif;
  font-size: 1.5rem;
  color: #D1D5DB;
  margin: 0;
  letter-spacing: 0.02em;
}

.release-modal-content {
  margin-bottom: 1.5rem;
}

.release-modal-content p {
  color: #A0A0A0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.release-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.release-form-group label {
  color: #D1D5DB;
  font-size: 0.9rem;
  font-weight: 600;
}

.release-form-group input[type="email"] {
  background: #0F0F0F;
  border: 1px solid #333333;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 200ms ease;
}

.release-form-group input[type="email"]:focus {
  outline: none;
  border-color: #D1D5DB;
  box-shadow: 0 0 0 3px rgba(209, 213, 219, 0.1);
}

.release-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #0F0F0F;
  border: 1px solid #333333;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.release-checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: #D1D5DB;
}

.release-checkbox-label {
  color: #A0A0A0;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
  flex: 1;
}

.release-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.release-modal-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
}

.release-modal-btn-cancel {
  background: transparent;
  color: #D1D5DB;
  border: 1px solid #D1D5DB;
}

.release-modal-btn-cancel:hover {
  background: #D1D5DB;
  color: #0F0F0F;
}

.release-modal-btn-submit {
  background: #D1D5DB;
  color: #0F0F0F;
}

.release-modal-btn-submit:hover:not(:disabled) {
  background: #E5E7EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 213, 219, 0.25);
}

.release-modal-btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.release-modal-error {
  color: #EF4444;
  font-size: 0.85rem;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #EF4444;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.release-modal-success {
  color: #10B981;
  font-size: 0.85rem;
  padding: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10B981;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.release-toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #D1D5DB;
  color: #0F0F0F;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
}

.release-toolbar-btn:hover {
  background: #E5E7EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 213, 219, 0.25);
}
