<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Share Bazar Page Styles - Fully Responsive */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.share-bazar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Breadcrumbs - Responsive */
.breadcrumbs {
  background: white;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumbs a {
  color: #2fc781;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .separator {
  margin: 0 6px;
  color: #666;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 600;
}

/* Search Section - Fully Responsive */
.search-section {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-container h3 {
  color: #2fc781;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.1rem;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 10px;
}

#stock-search {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8f9fa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#stock-search:focus {
  border-color: #2fc781;
  background: white;
  box-shadow: 0 0 0 3px rgba(47, 199, 129, 0.1);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-result-item {
  padding: 12px 15px;
  border-bottom: 1px solid #f1f3f4;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.search-result-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2fc781;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.search-result-item:hover::before {
  transform: scaleY(1);
}

.search-result-item:hover {
  background: #f8f9fa;
  padding-left: 20px;
}

.search-result-symbol {
  font-weight: bold;
  color: #2fc781;
  font-size: 14px;
}

.search-result-price {
  color: #666;
  font-size: 12px;
  margin-top: 2px;
}

.search-stats {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.no-search-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

/* Header - Responsive */
.header {
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2fc781 0%, #26a66a 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(47, 199, 129, 0.3);
}

.header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.header p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  opacity: 0.9;
}

/* Market Summary - Responsive Grid */
.market-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.summary-card {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.summary-card:hover {
  transform: translateY(-2px);
}

.summary-card h3 {
  color: #2fc781;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 8px;
  font-weight: 600;
}

.summary-card .number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.summary-card .label {
  color: #666;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  margin-top: 5px;
}

/* Category Navigation - Responsive */
.category-nav {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-nav h3 {
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nav-btn {
  padding: 8px 16px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  text-align: center;
  min-width: 80px;
}

.nav-btn:hover,
.nav-btn.active {
  background: #2fc781;
  border-color: #2fc781;
  color: white;
  text-decoration: none;
}

/* Stocks Section - Responsive */
.stocks-section {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.section-header {
  background: #f8f9fa;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
}

.section-header h2 {
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.section-header .count {
  color: #666;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* Responsive Table Container */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Stocks Table - Fully Responsive */
.stocks-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Minimum width for horizontal scroll */
}

.stocks-table th {
  background: #2fc781;
  color: white;
  padding: 12px 8px;
  text-align: left;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

.stocks-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #f1f3f4;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  vertical-align: middle;
}

.stocks-table tbody tr:hover {
  background: #f8f9fa;
}

.stock-link {
  color: #2fc781;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.stock-link:hover {
  color: #26a66a;
  text-decoration: none;
  transform: translateX(3px);
}

.symbol {
  font-weight: bold;
  color: #2fc781;
  font-size: clamp(0.9rem, 2vw, 1rem);
  position: relative;
  min-width: 80px;
}

.symbol::after {
  content: "â†’";
  position: absolute;
  right: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #2fc781;
}

.symbol:hover::after {
  opacity: 1;
}

.price {
  text-align: right;
  font-weight: 600;
  min-width: 70px;
}

.change {
  text-align: right;
  font-weight: bold;
  min-width: 80px;
}

.positive {
  color: #2fc781;
}

.negative {
  color: #dc3545;
}

.volume {
  text-align: right;
  font-size: clamp(0.7rem, 1.6vw, 0.8rem);
  color: #666;
  min-width: 80px;
}

/* Mobile Table Optimization */
@media (max-width: 768px) {
  .stocks-table {
    min-width: 500px;
    font-size: 12px;
  }

  .stocks-table th,
  .stocks-table td {
    padding: 8px 6px;
  }

  .stocks-table th {
    font-size: 11px;
  }

  .symbol {
    min-width: 60px;
  }

  .price,
  .change,
  .volume {
    min-width: 60px;
  }
}

/* Pagination - Responsive */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  background: white;
  flex-wrap: wrap;
}

.page-btn {
  padding: 8px 12px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  min-width: 35px;
  text-align: center;
}

.page-btn:hover,
.page-btn.current {
  background: #2fc781;
  border-color: #2fc781;
  color: white;
  text-decoration: none;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Refresh Button - Responsive */
.refresh-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2fc781;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(47, 199, 129, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.refresh-btn:hover {
  background: #26a66a;
  transform: translateY(-2px);
}

/* No Data */
.no-data {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.no-data h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.no-data p {
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2fc781;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Stock Info Popup - Responsive */
.stock-info-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.stock-info-content {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.stock-info-content h3 {
  color: #2fc781;
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.stock-details {
  margin-bottom: 20px;
}

.stock-details &gt; div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f3f4;
}

.stock-details .label {
  font-weight: 600;
  color: #666;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.stock-details .value {
  font-weight: bold;
  color: #333;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.stock-change.positive .value {
  color: #2fc781;
}

.stock-change.negative .value {
  color: #dc3545;
}

.redirect-msg {
  color: #666;
  font-style: italic;
  margin: 0;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* Search Loading - Responsive */
.search-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
  max-width: 90vw;
  text-align: center;
}

/* Notifications - Responsive */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideInRight 0.3s ease;
  max-width: calc(100vw - 40px);
  min-width: 250px;
}

.notification-info {
  border-left: 4px solid #2fc781;
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-success {
  border-left: 4px solid #2fc781;
}

.notification-content {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-message {
  color: #333;
  font-weight: 500;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Related Categories - Responsive */
.related-categories {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-categories h3 {
  color: #2fc781;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.related-link {
  padding: 6px 14px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  transition: all 0.3s ease;
}

.related-link:hover {
  background: #2fc781;
  border-color: #2fc781;
  color: white;
  text-decoration: none;
}

/* Responsive Design Breakpoints */

/* Large Mobile Devices */
@media (max-width: 480px) {
  .share-bazar-container {
    padding: 8px;
  }

  .breadcrumbs {
    padding: 10px 12px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .search-section {
    padding: 15px 12px;
    margin-bottom: 15px;
  }

  #stock-search {
    padding: 10px 15px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .header {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .market-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .summary-card {
    padding: 15px 10px;
  }

  .category-nav {
    padding: 15px 12px;
    margin-bottom: 20px;
  }

  .nav-buttons {
    gap: 6px;
  }

  .nav-btn {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 70px;
  }

  .section-header {
    padding: 12px;
  }

  .stocks-table {
    min-width: 450px;
    font-size: 11px;
  }

  .stocks-table th,
  .stocks-table td {
    padding: 6px 4px;
  }

  .pagination {
    padding: 15px 10px;
    gap: 6px;
  }

  .page-btn {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 30px;
  }

  .refresh-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .search-loading {
    margin: 15px;
    padding: 15px 20px;
  }

  .stock-info-content {
    padding: 20px 15px;
    margin: 15px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .market-summary {
    grid-template-columns: 1fr;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-btn {
    text-align: center;
  }

  .stocks-table {
    min-width: 400px;
    font-size: 10px;
  }

  .pagination {
    flex-direction: column;
    gap: 10px;
  }

  .pagination &gt; div {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .share-bazar-container {
    padding: 15px;
  }

  .market-summary {
    grid-template-columns: repeat(4, 1fr);
  }

  .stocks-table {
    min-width: auto;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .share-bazar-container {
    padding: 20px;
  }

  .header {
    padding: 40px 30px;
  }

  .summary-card {
    padding: 25px 20px;
  }

  .search-section,
  .category-nav,
  .related-categories {
    padding: 25px 20px;
  }

  .section-header {
    padding: 20px;
  }

  .stocks-table th,
  .stocks-table td {
    padding: 12px 10px;
  }
}

/* Print Styles */
@media print {
  .breadcrumbs,
  .search-section,
  .refresh-btn,
  .notification {
    display: none;
  }

  .share-bazar-container {
    max-width: none;
    padding: 0;
  }

  .header {
    background: #f8f9fa !important;
    color: #333 !important;
    box-shadow: none;
  }

  .stocks-table {
    font-size: 10px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .stocks-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .stocks-table th,
  .stocks-table td {
    border-bottom: 0.5px solid #f1f3f4;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Keyboard Navigation */
.nav-btn:focus,
.page-btn:focus,
.stock-link:focus,
#stock-search:focus {
  outline: 2px solid #2fc781;
  outline-offset: 2px;
}

/* Touch Target Improvements */
@media (pointer: coarse) {
  .nav-btn,
  .page-btn,
  .stock-link,
  .search-result-item {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
</pre></body></html>