.rating-container {
  /* background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; */
  margin-top: 20px;
}

.rating-container:hover {
  transform: translateY(-5px);
}

.star-rating {
  color: #ddd;
  font-size: 32px;
  cursor: pointer;
  display: inline-flex;
  gap: 0.5rem;
}

.star-rating i {
  transition: all 0.3s ease;
  transform-origin: center;
}

.star-rating i:hover {
  transform: scale(1.2);
}

.star-rating .fas {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.disabled-rating {
  pointer-events: none;
  opacity: 0.7;
}

.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.modal.fade .modal-dialog {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.modal-header {
  border-bottom: 2px solid #f8f9fa;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px 20px 0 0;
}

.modal-body {
  padding: 2rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.btn {
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  border: none;
}

.modal-footer {
  border-top: 2px solid #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 0 20px 20px;
}

#phoneNumberGroup {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rating-title {
  color: #2d3436;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.star-rating-hint {
  color: #636e72;
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.8;
}

.success-message {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
  display: none;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}
