#auth-heading-title{
  padding-top:8px;
}

#auth-container{
  border:0px;
}

/* Add to your app.css or create a separate CSS file */

/* Google Places Autocomplete Styling */
.google-places-autocomplete {
  position: relative;
}

.pac-container {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-family: inherit;
  z-index: 9999;
}

.pac-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
}

.pac-item:hover,
.pac-item-selected {
  background-color: #f9fafb;
}

.pac-item:last-child {
  border-bottom: none;
}

.pac-matched {
  font-weight: 600;
  color: #1f2937;
}

/* File Upload Enhancements */
.fi-fo-file-upload .fi-fo-file-upload-files {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.fi-fo-file-upload-file {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  transition: border-color 0.15s ease;
}

.fi-fo-file-upload-file:hover {
  border-color: #3b82f6;
}

/* Section Styling Improvements */
.fi-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.15s ease;
}

.fi-section:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.fi-section-header {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.fi-section-content {
  padding: 1.5rem;
}

/* Form Field Enhancements */
.fi-input {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fi-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Toggle Switch Styling */
.fi-toggle {
  transition: all 0.2s ease;
}

/* Loading States */
.wire-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .fi-fo-file-upload .fi-fo-file-upload-files {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 0.75rem;
  }

  .fi-section-header {
      padding: 1rem 1rem 0.5rem 1rem;
  }

  .fi-section-content {
      padding: 1rem;
  }
}

/* Custom Property Type Icons */
.property-type-apartment::before { content: '🏢'; }
.property-type-house::before { content: '🏠'; }
.property-type-villa::before { content: '🏡'; }
.property-type-office::before { content: '🏢'; }
.property-type-shop::before { content: '🏪'; }
.property-type-warehouse::before { content: '🏭'; }
.property-type-land::before { content: '🌾'; }
.property-type-hotel::before { content: '🏨'; }
.property-type-other::before { content: '🏘️'; }

/* Media Preview Enhancements */
.fi-fo-file-upload-file-preview {
  position: relative;
  overflow: hidden;
}

.fi-fo-file-upload-file-preview img {
  object-fit: cover;
  width: 100%;
  height: 120px;
  transition: transform 0.2s ease;
}

.fi-fo-file-upload-file-preview:hover img {
  transform: scale(1.05);
}

/* Video Upload Styling */
.fi-fo-file-upload-file[data-type="video"] {
  border-color: #10b981;
}

.fi-fo-file-upload-file[data-type="video"]::after {
  content: '▶️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  padding: 8px;
}

/* Document Upload Styling */
.fi-fo-file-upload-file[data-type="document"] {
  border-color: #f59e0b;
  background: #fffbeb;
}

.fi-fo-file-upload-file[data-type="document"]::before {
  content: '📄';
  font-size: 2rem;
  display: block;
  text-align: center;
  padding: 2rem 0;
}

/* Required Field Indicators */
.fi-fo-field-wrp-label .fi-required {
  color: #ef4444;
  margin-left: 2px;
}

/* Success States */
.fi-fo-field-wrp.fi-valid .fi-input {
  border-color: #10b981;
}

.fi-fo-field-wrp.fi-valid .fi-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Error States */
.fi-fo-field-wrp.fi-invalid .fi-input {
  border-color: #ef4444;
}

.fi-fo-field-wrp.fi-invalid .fi-input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Helper Text Styling */
.fi-fo-field-wrp-helper-text {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.375rem;
}

/* Progress Indicator for File Uploads */
.fi-fo-file-upload-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e5e7eb;
  overflow: hidden;
}

.fi-fo-file-upload-progress-bar {
  height: 100%;
  background: #3b82f6;
  transition: width 0.3s ease;
}

/* Drag and Drop Enhancements */
.fi-fo-file-upload-dropzone {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.fi-fo-file-upload-dropzone:hover,
.fi-fo-file-upload-dropzone.fi-dragover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.fi-fo-file-upload-dropzone-icon {
  font-size: 3rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

/* Responsive Improvements */
@media (max-width: 640px) {
  .fi-section-header {
      padding: 0.875rem;
  }

  .fi-section-content {
      padding: 0.875rem;
  }

  .fi-fo-file-upload-dropzone {
      padding: 2rem 1rem;
  }

  .fi-fo-file-upload-dropzone-icon {
      font-size: 2rem;
  }
}


@media (max-width: 768px) {
    .filament-tables-container {
        overflow-x: auto;
    }

    .filament-tables-table {
        min-width: 800px;
    }

    .quick-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-filters .filter-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .quick-filters .filter-buttons button {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

.loading-overlay {
    backdrop-filter: blur(2px);
}

.summary-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-button {
    transition: all 0.2s ease;
}

.filter-button:hover {
    transform: translateY(-1px);
}

.filter-button.active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



