.container {
  max-width: 450px;
  margin: 0 auto;
  border: 1px solid black;
}
.calc-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: #2f3339;
  gap: 20px;
}
.calc-container h2,
.calc-container h3
{
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  text-align: center;
  padding: 0;
}

.attention {
  background-color: #ffcc00;
  padding: 10px;
  border-radius: 5px;
  color: rgb(32, 32, 32);
  font-weight: 400;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}
.measurements {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.measurements input {
  border-color: #ffcc00 !important;
  box-shadow: none;
  border-radius: 5px;
  width: 100%;
  padding: 12px 20px !important;
  box-sizing: border-box;
}
.measurements input[type="text"]:focus {
  border-color: #ffcc00;
}
.select {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  background-color: #f1f1f1;
}
.select option {
  padding: 5px;
}
.list-color {

  margin:  0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  max-width: 950px;
}
.list-color img{
 width: 129px !important;
 height: 101px !important;
}
.list-color .item{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.calculate {
  padding: 15px 25px;
  background-color: #ffcc00;
  border-color: #ffcc00;
  font-weight: 700;
  font-size: 16px;
}
.result {
  font-weight: 900;
  font-size: 22px;
  color: #ffffff;
}
