/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.sushibar-wrapper {
  max-width: 500px;
  margin: 0 auto;
  font-family: inherit;
}

.sushibar-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.sushibar-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}

.sushibar-subtitle {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

.sushibar-input-group {
  margin-bottom: 15px;
}

.sushibar-input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.sushibar-input-group input:focus {
  border-color: #007cba;
  outline: none;
}

.sushibar-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.sushibar-btn:hover {
  background: #333;
}

.sushibar-btn:disabled {
  background: #999;
  cursor: not-allowed;
}

.sushibar-message {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.sushibar-message.error {
  color: #d9534f;
  background: #fdf7f7;
  padding: 10px;
  border-radius: 4px;
  border-left: 4px solid #d9534f;
}

.sushibar-result-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  animation: fadeIn 0.5s ease;
}

.sushibar-select {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
