body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #f4f4f4;
  color: #333;
}

h2 {
  color: #005ea2;
}

form {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 600px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

select,
input[type="text"],
button {
  padding: 10px;
  margin-top: 5px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  background: #007BFF;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

.quote-list {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.quote-item:last-child {
  border-bottom: none;
}

.center {
  text-align: center;
}
    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .left, .middle, .right {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .left, .middle {
      width: 25%;
    }
    .right {
      width: 50%;
    }
    .shirt-section {
      margin-bottom: 20px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 15px;
    }
    h3 {
      margin-top: 0;
    }