
body {
  font-family: 'Space Grotesk', sans-serif;
}


.container-estimate {
  background-color: white;
  padding: 30px;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}

h2 {
  text-align: center;
  margin: 0;
}

.step-count {
  text-align: center;
  color: gray;
  margin-bottom: 20px;
}

.selection-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left Panel Styles */
.left-panel {
  width: 50%;
}

.floorplan, .purpose {
  margin-bottom: 20px;
}

.floorplan p, .purpose p {
  font-weight: bold;
}

.options {
  display: flex;
  gap: 10px;
  
}

.option-btn {
  padding: 10px 20px;
  border: 1px solid #BB9A65;
  background-color: white;
  color: #BB9A65;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s;
}

.option-btn.active {
  background-color: #BB9A65;
  color: white;
}

/* Right Panel Styles */
.right-panel {
  width: 40%;
  text-align: center;
}

.right-panel img {
  width: 80%;
  margin: 0 auto;
}

.desc-title {
  font-weight: bold;
  margin: 10px 0;
}

.desc-text {
  color: gray;
}


.container2 {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}

h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

p {
  color: #999;
  margin-bottom: 20px;
}

.content2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px 0;
}

.left-section2 {
  width: 50%;
  text-align: left;
}

.requirement2 {
  margin: 20px 0;
}

.requirement2 small2 {
  display: block;
  color: #999;
  margin-top: 5px;
  font-size: 12px;
}

.quantity-control2 {
  display: flex;
  align-items: center;
  margin-top: 5px;
}


.quantity-control2 input {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.right-section2 {
  width: 40%;
  text-align: center;
  margin-top: 60px;
  align-items: center; 
  justify-content: center;
}

.right-section2 img {
  margin: 0 auto;
}

.buttons {
  margin-top: 20px;
}

.secondary-button2, .primary-button2, .next-btn{
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  background-color: #BB9A65;
  color: white;
}

.secondary-button2 {
  background-color: #BB9A65;
  margin-right: 10px;
  color: white;
}

.next-btn{
background-color: #BB9A65;
color: white;
}
.container2 {
  display: none;
}

.hidden {
  display: none !important;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.requirements-table td:first-child {
  font-weight: bold;
  padding: 15px;
  text-align: left;
  width: 60%;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.requirements-table td:nth-child(2) {
  text-align: center;
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.quantity-control2 button {
  width: 70px;
  height: 30px;
  background-color: #BB9A65;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 5px;
}


.quantity-control2 input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 5px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: not-allowed; 
}

.requirements-table tr:hover {
  background-color: #f1f1f1;
}

.requirements-table tr:last-child td {
  border-bottom: none;
}


@media (max-width: 768px){
  body{
    margin: 0;
    padding: 0;

  }
  
  .right-section2{
    display: none;
  }
  .right-panel{
    display: none;
  }
}