/* --- extracted style block 1 from Pages/Apartment/add_property.php --- */
    /* Custom styles for image preview without file size */
    .preview-info .filesize {
      display: none !important;
    }
    
    .image-preview-card .filename {
      font-size: 12px;
      color: #666;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 5px;
    }
    
    .file-info .total-size {
      display: none;
    }
    
    /* Loading overlay for compression */
    .compression-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      color: white;
      display: none;
    }
    
    .compression-progress {
      width: 300px;
      background: #333;
      border-radius: 10px;
      margin: 20px 0;
      overflow: hidden;
    }
    
    .compression-progress-bar {
      height: 10px;
      background: #4CAF50;
      width: 0%;
      transition: width 0.3s;
    }
  
