/* 🌊 SKYBRIZ - My Properties Styling */

.account-page-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(145deg, #001f3f, #003566, #0077b6);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #dff6ff;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Container */
.account-container {
  width: 100%;
  max-width: 1000px;
  background-color: rgba(0, 43, 91, 0.4);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #dff6ff;
  margin: 0 1rem;
}

/* Section Heading */
.greeting {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00d4ff;
  text-shadow: 0 0 6px rgba(0, 212, 255, 0.3);
  letter-spacing: 1px;
}

/* Grid Layout */
.properties-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (min-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Property Card */
.property-card {
  background-color: rgba(0, 51, 102, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 217, 255, 0.2);
}

/* Property Image */
.property-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid #00d4ff;
}

/* Property Info */
.property-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-info h4 {
  font-size: 1.2rem;
  color: #00d4ff;
  margin: 0 0 0.5rem;
  text-shadow: 0 0 4px rgba(0, 212, 255, 0.2);
}
.property-info p {
  font-size: 0.95rem;
  color: #cbe9ff;
  margin: 0.3rem 0;
}
.property-info .price {
  font-weight: bold;
  color: #3ecf8e;
  margin-top: auto;
  font-size: 1rem;
}

/* Action Buttons */
.property-info .actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.property-info .actions .edit-btn,
.property-info .actions .delete-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Edit Button */
.property-info .actions .edit-btn {
  background: linear-gradient(to right, #00d4ff, #0077b6);
  color: #001219;
}
.property-info .actions .edit-btn:hover {
  background: linear-gradient(to right, #0077b6, #00d4ff);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.3);
}

/* Delete Button */
.property-info .actions .delete-btn {
  background: linear-gradient(to right, #ff5e5e, #ff3b3b);
  color: #fff;
}
.property-info .actions .delete-btn:hover {
  background: linear-gradient(to right, #ff3b3b, #ff5e5e);
  box-shadow: 0 0 12px rgba(255, 94, 94, 0.3);
}

/* Responsive Padding */
@media (max-width: 500px) {
  .account-container {
    padding: 25px 15px;
  }
}

/* 🌊 SKYBRIZ - Confirm Remove Modal Styling */

.confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 30, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.confirm-modal.hidden {
  display: none;
}
.confirm-modal-content {
  background: rgba(0, 43, 91, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 400px;
  color: #dff6ff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 217, 255, 0.2);
}
.confirm-modal-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.confirm-buttons .btn {
  flex: 1;
  padding: 0.75rem 0;
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.confirm-buttons .apply-btn {
  background: linear-gradient(to right, #3ecf8e, #26b07c);
  color: #001d16;
  box-shadow: 0 0 10px rgba(62, 207, 142, 0.4);
}
.confirm-buttons .apply-btn:hover {
  background: linear-gradient(to right, #26b07c, #3ecf8e);
  transform: translateY(-2px);
}
.confirm-buttons .clear-btn {
  background: linear-gradient(to right, #ff5e5e, #ff3b3b);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 94, 94, 0.4);
}
.confirm-buttons .clear-btn:hover {
  background: linear-gradient(to right, #ff3b3b, #ff5e5e);
  transform: translateY(-2px);
}
