/* Ori-Kin Pattern Generator Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

#ori-kin-app {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.form-group label {
  display: inline-block;
  width: 150px;
  font-weight: bold;
  color: #555;
}

.form-group input, 
.form-group select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  flex: 1;
  max-width: 200px;
}

.params-container {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.buttons-container {
  margin-top: 25px;
  text-align: center;
}

button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.1s;
}

button:hover {
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

.primary-button {
  background-color: #4CAF50;
  color: white;
}

.primary-button:hover {
  background-color: #45a049;
}

.secondary-button {
  background-color: #008CBA;
  color: white;
}

.secondary-button:hover {
  background-color: #007aa3;
}

#plot-container {
  width: 100%;
  height: 600px;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-group label {
    margin-bottom: 5px;
    width: 100%;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    max-width: none;
  }
  
  #plot-container {
    height: 400px;
  }
}
