// Include Angular Material prebuilt theme
@import '@angular/material/prebuilt-themes/indigo-pink.css';

// Component-specific styles
.feedback-container {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

.mat-mdc-card {
  margin-bottom: 16px;
}

.mat-mdc-card-header {
  margin-bottom: 16px;
}

.mat-mdc-card-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.mat-mdc-card-subtitle {
  font-size: 16px;
  margin-bottom: 16px;
}

.rating-section {
  margin-bottom: 24px;
}

.rating-label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.star-container {
  display: flex;
  align-items: center;
}

.star {
  color: #bdbdbd;
  cursor: pointer;
  font-size: 32px;
  width: 32px;
  height: 32px;
  transition: color 0.2s ease;
  margin-right: 4px;
}

.star:hover, .star.selected {
  color: #ffc107;
}

.rating-description {
  margin-left: 12px;
  font-style: italic;
  color: #666;
}

.features-section {
  margin-bottom: 24px;
}

.features-chip-list {
  width: 100%;
}

.feature-input {
  width: 100%;
}

.feature-chip {
  background-color: #e0e0e0;
  margin-right: 8px;
  margin-bottom: 8px;
}

.feedback-section {
  margin-bottom: 24px;
}

.feedback-input {
  width: 100%;
}

// Make sure mat-form-field has proper styling
.mat-mdc-form-field {
  width: 100%;
  margin-bottom: 16px;
}

// Additional style fixes for Angular Material components
.mat-mdc-card-content {
  padding: 16px;
}

.mat-mdc-card-actions {
  padding: 8px 16px;
}

.mat-mdc-chip {
  margin: 4px;
}

// Ensure proper font and color for inputs
input.mat-mdc-input-element,
textarea.mat-mdc-input-element {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  color: rgba(0, 0, 0, 0.87);
}

// Ensure buttons have proper styling
.mat-mdc-button {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}

// Include any styles from the original CSS
@import './feedback-form.component.css';

// Add elevated styling to the button
button[mat-raised-button] {
  min-width: 150px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background-color: #2e93ff !important;
  color: white !important;
}

button[mat-raised-button]:hover:not([disabled]) {
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  background-color: #1a7ad9 !important;
}

button[mat-raised-button]:active:not([disabled]) {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}
