/* ─── Remove Property Warning Overlay ─────────────────────────────── */
.remove-warning-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 15, 30, 0.35);     /* Transparent dark background */
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .remove-warning-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  /* ─── Remove Property Modal ─────────────────────────────── */
  .remove-warning-modal {
    background: rgba(30, 41, 59, 0.95);       /* Slightly darker than geo modal */
    color: #fefefe;
    border: 1px solid rgba(255, 99, 71, 0.2); /* Tomato border */
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 99, 71, 0.2);
    backdrop-filter: blur(12px);
    animation: fadeSlideIn 0.4s ease-out;
    text-align: center;
  }
  
  /* ─── Modal Text ─────────────────────────────── */
  .remove-warning-modal p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffe8e6;
    text-shadow: 0 0 4px rgba(255, 99, 71, 0.1);
    margin: 0 0 1.5rem;
  }
  
  /* ─── Modal Buttons Container ─────────────────────────────── */
  .remove-warning-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  /* ─── Cancel Button ─────────────────────────────── */
  .remove-warning-modal .cancel-remove-btn {
    background: #a7b0bb;
    color: #1a1a1a;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .remove-warning-modal .cancel-remove-btn:hover {
    background: #c0cad5;
    transform: translateY(-2px);
  }
  
  /* ─── Confirm Remove Button ─────────────────────────────── */
  .remove-warning-modal .confirm-remove-btn {
    background: linear-gradient(to right, #ff6b6b, #d84343);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(255, 99, 71, 0.4);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .remove-warning-modal .confirm-remove-btn:hover {
    background: linear-gradient(to right, #d84343, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 0 16px rgba(255, 99, 71, 0.6);
  }
  
  /* ─── Animation ─────────────────────────────── */
  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  