#text {
  background-color: #f1f1f1;
  height: 50px;
  border: none;
}

.size {
  font-size: 12px;
}

.container {
  max-width: 1100px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
}

.map-container iframe {
  border: 0;
  border-radius: 8px;
}

/* Flex styles for the form columns */
.form-col-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.form-col-flex-row {
  display: flex;
  justify-content: space-between;
}

textarea.form-control {
  background-color: #f1f1f1;
  border: none;
}

/* Button styling */
.btn-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.btn-container button {
  color: white;
  background-color: black;
  width: 120px;
  height: 40px;
  font-size: small;
  border: none;
  cursor: pointer;
}

/* Media Query for small devices */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Stack columns vertically on small screens */
  .row > .col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* Make inputs and textarea full width */
  .form-col-flex,
  .form-col-flex-row {
    flex-direction: column !important;
  }

  input#text,
  textarea.form-control {
    width: 100% !important;
    margin-bottom: 10px;
  }
}
