/* style.css */

body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #f4f4f4;
  color: #333;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.picker {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.picker label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
}

.build-summary {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.build-summary h2 {
  margin-top: 0;
}

.build-summary ul {
  list-style: none;
  padding-left: 0;
}

.build-summary li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.build-summary a {
  text-decoration: none;
  color: #007bff;
}

.build-summary a:hover {
  text-decoration: underline;
}

#totalPrice {
  color: #2a9d8f;
  font-weight: bold;
  font-size: 20px;
}
