/* static/src/css/sifrant_enot_yamaha.css */

/* Scope all styles to #yamaha-ui to avoid affecting other parts of the website */
#yamaha-ui {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

/* Scoped dropdown styles */
#yamaha-ui .dropdown {
  width: 100%;
  padding: 12px 18px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  color: #333;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#yamaha-ui .dropdown:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Scoped product list styles */
#yamaha-ui .product-list {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#yamaha-ui .product-list h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
}

#yamaha-ui .product-list ul {
  list-style: none;
  padding: 0;
}

#yamaha-ui .product-list li {
  padding: 15px;
  border-bottom: 1px solid #eee;
  background-color: #fafafa;
  border-radius: 8px;
  margin-bottom: 10px;
}

#yamaha-ui .product-list li:last-child {
  border-bottom: none;
}

#yamaha-ui .product-list li div {
  margin-bottom: 8px;
  color: #555;
  text-align: center;
}

#yamaha-ui .product-list li strong {
  font-size: 1.2rem;
  color: #222;
}

/* Scoped button styles */
#yamaha-ui button.btn-primary {
  display: block;
  margin: 10px auto 0;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#yamaha-ui button.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Responsive styling scoped */
@media (max-width: 600px) {
  #yamaha-ui {
    padding: 15px;
  }

  #yamaha-ui .dropdown {
    font-size: 14px;
  }

  #yamaha-ui .product-list h3 {
    font-size: 1.4rem;
  }

  #yamaha-ui .product-list li {
    padding: 12px;
  }

  #yamaha-ui button.btn-primary {
    width: 100%;
    padding: 12px;
  }
} 
