.container-robots-txt-generator {
  font-family: Arial, sans-serif;
  background: #fdf6e9;
  padding: 30px 5px;
}
.container-robots-txt-generator .card {
  background: #f7ddad;
  padding: 30px;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container-robots-txt-generator h2 {
  text-align: center;
  margin-bottom: 30px;
}
.container-robots-txt-generator .form-group {
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}
.container-robots-txt-generator label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.container-robots-txt-generator select,
.container-robots-txt-generator input[type=text] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.container-robots-txt-generator textarea {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  padding: 10px;
}
.container-robots-txt-generator button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #de9406;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.container-robots-txt-generator button:hover {
  background-color: #a37216;
}
.container-robots-txt-generator .row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.container-robots-txt-generator .col-half {
  flex: 1 1 45%;
}
.container-robots-txt-generator .custom-select-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.container-robots-txt-generator .custom-select-box label {
  font-weight: normal;
}
.container-robots-txt-generator .custom-select-box input[type=checkbox] {
  margin-right: 5px;
}
.container-robots-txt-generator .btn-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.container-robots-txt-generator .btn-icon {
  background: #de9406;
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  width: 100px;
}
.container-robots-txt-generator .btn-icon:hover {
  background: #de9406;
}
.container-robots-txt-generator .btn-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}