/* popup.css */

/*============================Price pop-up button===============================*/


/*-------------- pop-up prices ------------------------------*/
.price-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff; /* White background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: #000000; /* Black text */
    width: 90%;
    max-width: 600px;
  }
  
  .hidden {
    display: none; /* Hide the popup by default */
  }
  
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
  }
  
  .styled-table th,
  .styled-table td {
    text-align: left;
    padding: 10px;
  }
  
  .styled-table th {
    color: #000;
    font-family: Montserrat;
    font-size: 20.477px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .styled-table td {
    border-bottom: 1px solid #eaeaea; /* Subtle row divider */
    color: #555;
  }
  
  /* Highlight price column */
  .styled-table td:nth-child(3) {
    color: #AC936E;
    font-family: Montserrat;
    font-size: 19.015px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  
  /* Remove last row border */
  .styled-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  .close-popup {
    position: absolute;
    top: 10px; /* Position near the top */
    right: 10px; /* Position near the right */
    background: none; /* Remove button background */
    border: none; /* Remove border */
    padding: 0; /* Remove padding */
    cursor: pointer;
    z-index: 10; /* Ensure it appears above other elements */
  }
  
  .close-icon {
    width: 24px; /* Set icon size */
    height: 24px;
    transition: transform 0.2s ease; /* Add hover effect */
  }
  
  .close-icon:hover {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
  }
  
  .popup-content {
    display: flex;
    flex-direction: column;
    padding: 20px; 
  }
  
  .button-container {
    display: flex;
    justify-content: flex-start; /* Aligns buttons horizontally to the left */
    gap: 10px; /* Adds spacing between buttons */
    margin-top: auto;
    width: 100%;
  }
  
  .whatsapp-button-icon {
    width: 20px;
    height: 20px;
  }
  
  .button-container .whatsapp-button-price {
    margin-top: 40px;
    background-color: #b38b59;
    color: white;
    font-size: 1.1rem;
    /* padding: 10px 10px; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 200px;
    height: 50px;
  }
  .button-container .whatsapp-button-price:hover {
    background-color: #9e774a; /* Darker shade on hover */
  }

  /* Price toggle betwen SQM and SQFT button */
  
  .price-toggle-container button {
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .price-toggle-container button.toggle-active {
    background-color: #b38b59;
    color: #fff;
    border-color: #9e774a;
  }
  
  