#bottomMenu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  display: none; /* Change to flex to test */
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  z-index: 1000;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

/* 👇 Replaces .bottomMenu-text with same layout behavior */
.person-info {
  display: flex;
  align-items: center;
  margin-left: 150px;      /* same as old .bottomMenu-text */
  max-width: 70%;         /* same as old .bottomMenu-text */
  gap: 5px;
}

.avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.person-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.person-name {
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.company-name {
  font-size: 14px;
  color: #777;
}

.bottomMenu-buttons {
  display: flex;
  gap: 7px;
  margin-right: 150px;
}

/* Transparent outlined button */
.outline-button {
  background-color: transparent;
  color: #222;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid #666;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.outline-button:hover {
  background-color: orange;
  color: white;
}

#sellLandBtn {
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#sellLandBtn:hover {
  background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 600px) {
  #bottomMenu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .person-info {
    margin-left: 0;
    max-width: 60%;
    margin-left: 1px;
  }

  .person-name {
    font-size: 14px;
  }

  .company-name {
    font-size: 12px;
  }

  .avatar {
    width: 45px;
    height: 45px;

  }

  .bottomMenu-buttons {
    margin-right: 0;
    gap: 8px;
    flex-shrink: 0;
  }

  .bottomMenu-buttons button {
    font-size: 14px;
    padding: 8px 12px;
  }
}
