.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 50px;
    background-color: rgba(128, 128, 128, 0.301); 
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-family: "Handjet", sans-serif;
}

label {
    display: block;
    margin-top: 15px;
}
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}
#Submit {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #4c7faf;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
#Submit:hover {
    background-color: #18bb2e;
}

.lwf{position: fixed;
    right: 10px;
    top: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px; 
}


.artist-chips,
.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
  justify-content: center;
  text-align: center; 
}

.artist-chips input[type="checkbox"],
.style-chips input[type="checkbox"] {
  display: none;
}

.artist-chips label,
.style-chips label {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #aaa;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  background: #575757;   
  color: white;          
}

.artist-chips label:hover,
.style-chips label:hover {
  background: #2c4a8b83;
}

.artist-chips input[type="checkbox"]:checked + label,
.style-chips input[type="checkbox"]:checked + label {
  background: #007bff;  
  color: white;
  border-color: #007bff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.performance-choice {
  display: flex;
  justify-content: center; 
  gap: 10px;
  margin: 10px 0;
  align-items: center;
}


.performance-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}


.performance-choice .choice-btn {
  padding: 10px 20px;
  border: 2px solid #666;
  border-radius: 20px;
  cursor: pointer;
  background-color: #1e1e1e;
  color: #e0e0e0;
  transition: all 0.18s ease;
  user-select: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}


.performance-choice .choice-btn:hover {
  background-color: #2a2a2a;
  border-color: #999;
}


.performance-choice input[type="radio"]:checked + .choice-btn {
  background-color: #2650c2;
  color: #201414;
  border-color: #290f72;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(40,167,69,0.12);
}


.performance-choice .choice-btn.active {
  background-color: #28a745 !important;
  color: #fff !important;
  border-color: #28a745 !important;
}