body {
  background-color: #f5f7ff;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  max-width: 900px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.form-title {
  color: #4752c4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-check-input:checked {
  background-color: #4752c4;
  border-color: #4752c4;
}

.btn-primary {
  background-color: #4752c4;
  border-color: #4752c4;
}

.btn-primary:hover {
  background-color: #3a43a3;
  border-color: #3a43a3;
}

.output-box {
  min-height: 70px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1rem;
}

.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: #28a745;
  color: white;
  padding: 1rem;
  border-radius: 6px;
  display: none;
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
}

.suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.suggestion-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.menu-p {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.shadow__btn {
  padding: 10px 20px;
  border: none;
  font-size: 17px;
  color: #fff;
  border-radius: 7px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
  text-decoration: none;
}

.shadow__btn {
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
}

.shadow__btn:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255),
    0 0 50px rgb(0, 140, 255), 0 0 100px rgb(0, 140, 255);
}

.info {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #509af8;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.info__icon {
  width: 20px;
  height: 12px;
  transform: translateY(-2px);
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info__icon path {
  fill: #fff;
}

.info__title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.info__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.info__close path {
  fill: #fff;
}

.discord-1 {
  text-decoration: none;
  color: #fff;
}

/* New styles for dynamic sections */
.clothing-section {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f8f9fa;
  position: relative;
}

.clothing-section:first-child {
  background-color: #fff;
  border-color: #4752c4;
}

.section-header h5 {
  color: #4752c4;
  margin: 0 0 1rem 0;
}

.add-section-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.add-section-btn {
  margin: 0 10px;
  border-color: #4752c4;
  color: #4752c4;
  font-weight: 600;
}

.add-section-btn:hover {
  background-color: #4752c4;
  border-color: #4752c4;
  color: white;
}

.plus-icon {
  font-size: 1.2em;
  font-weight: bold;
}

.remove-section-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dc3545;
  border: none;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.remove-section-btn:hover {
  background: #c82333;
}
