/*
Theme Name: My Custom Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom WordPress theme from a static PHP site.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, blog, two-columns
Text Domain: my-custom-theme
*/

:root {
  --primary-color: #3498db;
  --secondary-color: #2980b9;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-primary: #2c3e50;
  --dark-secondary: #34495e;
  --accent-color: #667eea;
  --accent-secondary: #764ba2;
  --border-color: #e1e5e9;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}
		

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* This centers the content horizontally and vertically */
.full-screen-center {
    display: flex;
    justify-content: center; /* Horizontally centers content */
    align-items: center; /* Vertically centers content */
    height: calc(100vh - 100px); /* Adjust based on your header/footer height */
    width: 100%;
}

/* This styles the help box itself */
.search-help {
    max-width: 800px;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
}

/* Header and Navigation */
.navbar {
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

.nav-brand .brand-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-brand .brand-link:hover {
  color: var(--primary-color);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 12px; /* Reduced from 30px to save space */
  margin: 0;
  padding: 0;
  white-space: nowrap;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px; /* Reduced padding from 8px 16px */
  border-radius: 5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px; /* Reduced gap between icon and text */
  white-space: nowrap;
  font-size: 0.9rem; /* Slightly smaller font */
}

.nav-links li a:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
/*////////////////////////////////////////////////////////////////////////////////////////
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

.dropdown-menu .logout-link:hover {
    background-color: #fee;
    color: #dc3545;
}

.dropdown-menu .divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* User Status Banner */
.user-status-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-status-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.premium {
    background: #ffd700;
    color: #333;
}

.status-badge.free {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.upgrade-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    padding: 3px 8px;
    border: 1px solid #ffd700;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.upgrade-link:hover {
    background: #ffd700;
    color: #333;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
    }
    
    .dropdown-menu li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu a {
        padding: 15px 20px;
        color: white;
    }
    
    .dropdown-toggle .dropdown-arrow {
        display: none;
    }
    
    .user-status-banner {
        text-align: center;
        padding: 12px 0;
    }
    
    .welcome-text {
        flex-direction: column;
        gap: 5px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dropdown-menu {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .dropdown-menu a {
        color: #e2e8f0;
    }
    
    .dropdown-menu a:hover {
        background-color: #4a5568;
    }
    
    .dropdown-menu .divider {
        background: #4a5568;
    }
}
/*///////////////////////////////////////////////////////////////////////////////////////*/
/* Hide text on smaller desktop screens to prevent wrapping */
@media (max-width: 1200px) {
  .nav-links li a .nav-text {
    display: none;
  }
  
  .nav-links li a {
    padding: 8px 10px;
    gap: 0;
    justify-content: center;
    min-width: 40px;
  }
  
  .nav-links ul {
    gap: 8px;
  }
}

/* Show text again on larger desktop screens */
@media (min-width: 1400px) {
  .nav-links ul {
    gap: 20px;
  }
  
  .nav-links li a {
    padding: 8px 16px;
    gap: 8px;
  }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 140px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--text-color);
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-primary);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-primary);
  font-weight: 600;
}

.feature-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Search Page Styles */
.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.search-container h1 {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: 2.5em;
}

/* Search Form */
.search-form {
  text-align: center;
  margin-bottom: 40px;
}

.input-group {
  display: inline-flex;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

.search-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  background: var(--white);
  color: var(--text-color);
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  padding: 15px 25px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--secondary-color);
}

/* Results Header */
.results-header {
  text-align: center;
  margin-bottom: 30px;
}

.results-header h2 {
  color: var(--text-color);
  font-size: 1.8em;
  margin: 0;
}

.search-term {
  color: var(--primary-color);
  font-weight: bold;
}

/* Tiles Grid */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.tile {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.file-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.file-info {
  margin-bottom: 20px;
}

.filename {
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 10px 0;
  word-wrap: break-word;
  line-height: 1.4;
  font-size: 14px;
}

.file-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 8px;
}

.file-type {
  background: var(--primary-color);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.file-size {
  background: var(--light-bg);
  color: #6c757d;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.download-link {
  text-decoration: none;
}

.download-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
}

.download-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* Messages */
.no-results, .search-message, .search-help {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  margin: 20px auto;
  max-width: 600px;
}

.no-results-icon, .message-icon, .help-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.no-results h3, .search-help h3 {
  color: var(--text-color);
  margin: 0 0 15px 0;
  font-size: 1.5em;
}

.no-results p, .search-message p {
  color: #6c757d;
  margin: 10px 0;
  line-height: 1.6;
}

.search-help ul {
  text-align: left;
  display: inline-block;
  margin: 20px 0;
}

.search-help li {
  color: #6c757d;
  margin: 8px 0;
  line-height: 1.6;
}

.results-count {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  margin-top: 20px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

/* Footer */
.footer {
  background: var(--dark-primary);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-section h4 {
  color: #ecf0f1;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  line-height: 1.6;
  color: #bdc3c7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--dark-secondary);
  padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
}

/* File Explorer Styles */
.file-explorer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.explorer-header {
  margin-bottom: 30px;
}

.explorer-header h1 {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.explorer-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.search-bar {
  flex: 1;
  max-width: 400px;
}

.search-bar input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.sort-controls {
  display: flex;
  gap: 10px;
}

.sort-btn {
  padding: 10px 16px;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sort-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.go-up-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--light-bg);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.go-up-btn:hover {
  background: var(--border-color);
  transform: translateY(-1px);
}

.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.tile-wrapper {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
}

.tile-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.tile-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px;
  text-align: center;
}

.file-icon-box {
  font-size: 3rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.file-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
  color: var(--text-color);
}

.preview-text {
  font-size: 12px;
  color: #666;
  border-top: 1px solid var(--border-color);
  padding: 15px;
  text-align: left;
  line-height: 1.4;
  background: var(--light-bg);
}

.preview-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-top: 1px solid var(--border-color);
}

.empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.empty-message i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--border-color);
}

.empty-message p {
  font-size: 1.2rem;
  margin: 0;
}

/* Icon Colors for File Explorer */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: #2ecc71 !important; }
.text-danger { color: #e74c3c !important; }
.text-warning { color: #f39c12 !important; }
.text-info { color: #1abc9c !important; }
.text-purple { color: #9b59b6 !important; }

/* Active Navigation Link */
.nav-links li a.active {
  background-color: rgba(255,255,255,0.2);
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--dark-primary);
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-links ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 10px;
    justify-content: flex-start;
    font-size: 1rem;
  }
  
  .nav-links li a .nav-text {
    display: inline !important;
  }
  
  .menu-toggle:checked ~ .nav-links {
    left: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }

  /* File Explorer mobile styles */
  .file-explorer-container {
    padding: 15px;
  }
  
  .explorer-header h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  .explorer-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .sort-controls {
    justify-content: center;
  }
  
  .files-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .tile-link {
    padding: 15px;
  }
  
  .file-icon-box {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .file-title {
    font-size: 13px;
  }
  .search-container {
    padding: 15px;
  }
  
  .search-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .input-group {
    flex-direction: column;
    max-width: 100%;
  }
  
  .search-input {
    border-radius: 8px 8px 0 0;
  }
  
  .search-btn {
    border-radius: 0 0 8px 8px;
  }
  
  .tiles {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .tile {
    padding: 15px;
  }
  
  .file-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .features-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .footer {
    padding: 40px 0 20px;
  }

  /* File Explorer small mobile styles */
  .explorer-header h1 {
    font-size: 1.8em;
  }
  
  .files-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .file-icon-box {
    font-size: 2rem;
  }
  
  .sort-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  /* Search page small mobile styles */
  .search-container h1 {
    font-size: 1.8em;
  }
  
  .filename {
    font-size: 13px;
  }
  
  .download-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
}