/* Evaluation Form Shadow CSS */

/* Download Section Styles */
.download-section {
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid #e5e7eb;
}

.download-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px 0;
  text-align: center;
}

.download-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.download-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.download-button:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.download-button.pdf {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-color: transparent;
}

.download-button.pdf:hover {
  opacity: 0.9;
}

.download-button.email {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-color: transparent;
}

.download-button.email:hover {
  opacity: 0.9;
}

.download-button svg {
  width: 16px;
  height: 16px;
}

/* Evaluation Form Styles */
.evaluation-form {
  padding: 24px;
}

.rating-group {
  margin-bottom: 16px;
}

.rating-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.rating-button {
  width: 40px;
  height: 40px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 16px;
}

.rating-button:hover {
  border-color: #667eea;
}

.rating-button.selected {
  background: #667eea;
  border-color: #667eea;
  color: white;
}

.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-textarea:focus {
  border-color: #667eea;
}

/* Responsive */
@media (max-width: 480px) {
  .evaluation-form {
    padding: 20px;
  }

  .rating-buttons {
    gap: 6px;
  }

  .rating-button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}