body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 900px;
  margin: 20px auto;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 2px solid #ddd;
}

.header .logo img {
  max-width: 250px;
  height: auto;
}

.header .company-info {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.company-info h3 {
  margin: 0;
  font-size: 1.5em;
  font-weight: bold;
}

.company-info p {
  margin: 0;
  font-size: 0.8em;
  color: #555;
}

.header .contact-table {
  text-align: right;
  font-size: 0.9em;
  min-width: 200px;
}

.contact-table table {
  border-collapse: collapse;
  width: auto;
}

.contact-table td {
  padding: 5px;
  border: none;
}

.form-title {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 0;
}

.form-section {
  margin-bottom: 20px;
}

.form-section h2 {
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.small-label {
  font-size: 0.85em; /* Decreases font size */
  font-weight: normal;
  color: #555; /* Optional: Makes the text slightly darker */
  line-height: 1.3; /* Optional: Adjusts line spacing for better readability */
}
.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Ensures alignment to the left */
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: auto; /* Prevents the checkbox from inheriting input width */
  margin: 0; /* Removes extra margins */
}

.address-container {
  display: flex;
  align-items: flex-start; /* Align button with top of the textarea */
  gap: 10px;
}

input,
select,
textarea {
  width: 30%; /* Ensures all input fields have a consistent width */
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #cfd8dc;
  color: #000000;
  border: none;
  font-size: 1em;
  cursor: pointer;
  width: auto;
  padding: 5px 10px;
}

button:hover {
  background-color: #90a4ae;
}

.submit-button {
  background-color: #3c71ad;
  color: #ffffff;
  border: none;
  font-size: 1em;
  cursor: pointer;
  width: auto;
  padding: 5px 10px;
}

.submit-button:hover {
  background-color: #0056b3;
}


.googlereviewgrid {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.caption {
    font-weight: bold;
    padding: 10px;
    background-color: #f0f0f0;
  color: #3c71ad;  
  text-align: left;
}

.review-header, .review-row {
    display: grid;
    grid-template-columns: 80px 150px 150px 50px auto;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.review-header {
    font-weight: bold;
    background-color: #f9f9f9;
}

.review-row div {
    padding: 5px;
    vertical-align: middle;
}

.review-row img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-row:nth-child(even) {
    background-color: #f7f7f7;
}

