


/* ============================================
   DOWNLOADS PAGE STYLES 
   ============================================ */

/* ===== PAGE BANNER (reuse from gallery) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}

/* ===== DOWNLOAD STATS ===== */
.download-stats-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.stat-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.stat-icon.tender-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.stat-icon.app-icon {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.stat-icon.report-icon {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.stat-info h3 {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1;
}

.stat-info p {
  color: #64748b;
  font-size: 13px;
  margin: 4px 0 0;
  font-weight: 500;
}

/* ===== TOOLBAR ===== */
.download-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
    z-index: 1000;
      position: relative;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 420px;
  min-width: 200px;
}

.search-box i.fa-search {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  outline: none;
}

.search-box input::placeholder {
  color: #94a3b8;
}

.search-box input:focus {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: var(--shadow-glow);
}

.search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #e2e8f0;
  color: #64748b;
  font-size: 11px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.search-clear.visible {
  display: flex;
}

.search-clear:hover {
  background: #cbd5e1;
  color: #334155;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sort Dropdown */
.sort-dropdown {
  position: relative;
  z-index: 1000;
}

.sort-btn {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.sort-btn:hover {
  border-color: rgba(13, 148, 136, 0.3);
  color: var(--primary);
}

.sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow);
  padding: 6px;
  min-width: 200px;
  display: none;
  z-index: 9999;
  animation: dropIn 0.3s ease;
}

.sort-menu.active {
  display: block;
}

.sort-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
}

.sort-option:hover {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(6, 182, 212, 0.08));
  color: var(--primary);
}

.sort-option.active {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--primary);
  font-weight: 600;
}

/* View Toggle */
.view-toggle {
  display: flex;
  background: var(--glass-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.view-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  color: #94a3b8;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn:hover {
  color: var(--primary);
}

.view-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}




/* ===== CATEGORY TABS ===== */
.download-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.download-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.tab-btn i {
  font-size: 13px;
}

.tab-btn:hover {
  color: var(--primary);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.tab-count {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
}

/* ===== DOWNLOAD CARDS — LIST VIEW ===== */
.downloads-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-item.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.download-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(13, 148, 136, 0.2);
}

.download-card:hover::before {
  opacity: 1;
}

/* File Icon */
.file-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.file-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: transform 0.3s ease;
}

.download-card:hover .file-icon {
  transform: scale(1.1);
}

.file-icon.tender {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.file-icon.application {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.file-icon.form {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.file-icon.report {
  background: linear-gradient(135deg, #10b981, #059669);
}

.file-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* File Details */
.file-details {
  flex: 1;
  min-width: 0;
}

.file-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.file-header h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.4;
}

.file-badges {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-active {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.badge-active i {
  font-size: 6px;
  animation: pulse 2s infinite;
}

.badge-closing {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.badge-closing i {
  animation: pulse 1s infinite;
}

.badge-expired {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.badge-permanent {
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.file-details p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.file-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.file-meta span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.file-meta span i {
  color: var(--primary);
  font-size: 11px;
}

/* File Actions */
.file-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: flex-start;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 148, 136, 0.3);
  color: #fff;
}

.btn-download i {
  transition: transform 0.3s ease;
}

.btn-download:hover i {
  transform: translateY(2px);
}

.btn-download.btn-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.btn-view {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== GRID VIEW ===== */
.downloads-container.grid-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.downloads-container.grid-view .download-card {
  flex-direction: column;
  text-align: center;
  padding: 32px 24px;
}

.downloads-container.grid-view .file-icon-area {
  align-self: center;
}

.downloads-container.grid-view .file-icon {
  width: 68px;
  height: 68px;
  font-size: 26px;
}

.downloads-container.grid-view .file-header {
  flex-direction: column;
  align-items: center;
}

.downloads-container.grid-view .file-badges {
  justify-content: center;
}

.downloads-container.grid-view .file-details p {
  font-size: 13px;
}

.downloads-container.grid-view .file-meta {
  justify-content: center;
  gap: 12px;
}

.downloads-container.grid-view .file-actions {
  justify-content: center;
  margin-top: 8px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  animation: fadeInUp 0.6s ease;
}

.empty-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  margin: 0 auto 24px;
  opacity: 0.6;
}

.empty-state h4 {
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.empty-state p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 24px;
}

.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 148, 136, 0.3);
}

/* ===== RESULTS INFO ===== */
.results-info {
  text-align: center;
  margin-top: 32px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
}

.results-info span {
  color: var(--primary);
  font-weight: 700;
}



/* ===== TENDER INFO CARD (Dark Section) ===== */

     .about-section {
        background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 40px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .about-feature h6 {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-feature p {
        font-size: 14px;
        opacity: 0.7;
        margin: 0;
    }
    
.tender-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.tender-info-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tender-info-header i {
  font-size: 20px;
  color: var(--accent-light);
}

.tender-info-header h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.tender-info-header h5::after {
  display: none;
}

.tender-info-body {
  padding: 8px 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
}

.info-row:last-child {
  border: none;
}

.info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.info-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-align: right;
}

.tender-info-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-tender-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 14px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-tender-contact:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .downloads-container.grid-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .download-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .file-icon-area {
    align-self: center;
  }

  .file-header {
    flex-direction: column;
    align-items: center;
  }

  .file-badges {
    justify-content: center;
  }

  .file-meta {
    justify-content: center;
  }

  .file-actions {
    justify-content: center;
    width: 100%;
  }

  .download-card::before {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }

  .download-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    max-width: 100%;
  }

  .toolbar-right {
    justify-content: space-between;
  }

  .downloads-container.grid-view {
    grid-template-columns: 1fr;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .info-value {
    text-align: left;
  }
}


@media (max-width: 576px) {

  .sort-dropdown {
    width: 100%;
  }

  .sort-menu {
    left: 0;
    right: 0;
    min-width: 100%;
    margin-top: 6px;
    border-radius: 14px;
  }

}


@media (max-width: 576px) {

  .sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

}


@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 1.8rem;
  }

  .download-stats-section {
    margin-top: -40px;
  }

  .stat-card {
    padding: 18px 16px;
    gap: 12px;
  }

  .stat-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 12px;
  }

  .stat-info h3 {
    font-size: 1.4rem;
  }

  .stat-info p {
    font-size: 11px;
  }

  .download-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .tab-btn span:not(.tab-count) {
    display: none;
  }

  .download-card {
    padding: 20px 16px;
  }

  .file-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .file-header h5 {
    font-size: 14px;
  }

  .file-details p {
    font-size: 13px;
  }

  .file-meta {
    gap: 10px;
  }

  .file-meta span {
    font-size: 11px;
  }

  .btn-download {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  .btn-view {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .file-actions {
    flex-direction: row;
    width: 100%;
  }

  .sort-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .view-toggle {
    display: none;
  }

  .about-glass {
    padding: 20px;
  }
}