/* Reset some default styles */
/* Container */
  .container-estimate {
    background: #ffffff;
    max-width: 80%;
    margin: auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Heading */
  .container-estimate h1.text-center {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
  }
  
  /* Form styling */
  .container-estimate form.form-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Labels */
  label.control-label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #34495e;
  }
  
  /* Inputs and Select */
  input.form-control,
  select.form-control {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  input.form-control:focus,
  select.form-control:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(41, 128, 185, 0.4);
    outline: none;
  }
  
  /* Button styling */
  button.btn {
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background-color: #2980b9;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button.btn:hover {
    background-color: #3498db;
  }
  
  /* Output and map area */
  #output {
    margin-top: 30px;
    font-size: 18px;
    color: #2d3436;
    font-weight: 500;
    text-align: center;
  }
  
  #googleMap {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  