body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.phone-frame {
  width: 375px;
  height: 667px;
  border: 16px solid #000;
  border-radius: 30px;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: relative; 
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px; 
}

h2,
h3 {
  font-size: 18px;
  margin: 10px 0;
  text-align: center;
}

.clothing-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.clothing-item {
  width: 60px;
  height: 60px;
}

.input-section {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.input-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  text-align: center;
}

input {
  padding: 10px;
  font-size: 14px;
  width: 80%;
  box-sizing: border-box;
  text-align: center; 
}

button {
  padding: 10px 20px;
  background-color: white; 
  color: black; 
  border: 1px solid black; 
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

button:hover {
  background-color: #f0f0f0;
}

.results-section {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.results-section p {
  font-size: 16px;
  margin: 5px 0;
}

.clothing-level {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
  font-weight: bold;
}

.back-button {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  background-color: white; 
  color: black; 
  border: 1px solid black; 
  border-radius: 5px;
  cursor: pointer;
  z-index: 10; 
}

.back-button:hover {
  background-color: #f0f0f0; 
}
