body {
    font-family: Arial, sans-serif;
    background: #f0f4f8;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
  }
  
  .container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    color: #34495e;
  }
  
  #property-display {
    margin-top: 20px;
    font-size: 18px;
    color: #2c3e50;
  }
  
  .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #2980b9;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background: #1c5980;
  }
  