.online-users-count {
    font-weight: 600;
    color: #ffb300;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  .online-users-count:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  }
  
  .newly-created-coins {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 20px 0 0 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }
  
  /* New styles for the SolFM new pairs section */
  .newpairsolfm {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 20px 0 0 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
  }
  
  .coin-card {
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: flex-start; /* Changed to flex-start for better layout control */
    min-height: 140px; /* Increased from 120px for more space */
    height: 140px; /* Fixed height for consistency */
    margin-bottom: 20px; /* Increased from 16px */
    padding: 24px 28px; /* Increased padding for more breathing room */
    box-sizing: border-box;
    margin-left: 16px;
    margin-right: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    width: calc(100% - 32px);
  }
  .coin-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 179, 0, 0.3);
  }
  .coin-img {
    width: 60px; /* Increased from 56px */
    height: 60px; /* Increased from 56px */
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  }
  .coin-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Increased from 10px */
    margin-left: 20px;
    min-width: 0;
    overflow: visible;
    position: relative; /* For absolute positioning of copy button */
  }
  
  .coin-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    overflow: visible;
  }
  
  .coin-mint-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    overflow: visible;
    position: relative; /* For copy button positioning */
  }
  
  .coin-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.2em;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
    flex-shrink: 0;
  }
  .coin-symbol {
    color: #ffb300;
    font-size: 1.1em;
    font-weight: 700;
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .coin-mint-text {
    color: #64748b;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    font-weight: 500;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
    flex: 1;
    min-width: 0;
    cursor: pointer; /* Make it look clickable */
    transition: all 0.2s ease; /* Smooth transition for hover effects */
    padding: 6px 12px; /* Add padding for better click target */
    border-radius: 8px; /* Rounded corners */
    background: rgba(100, 116, 139, 0.05); /* Light background */
    border: 1px solid rgba(100, 116, 139, 0.1); /* Subtle border */
  }
  .coin-mint-text:hover {
    background: rgba(255, 179, 0, 0.1); /* Orange background on hover */
    border-color: rgba(255, 179, 0, 0.3); /* Orange border on hover */
    color: #ffb300; /* Orange text on hover */
    transform: scale(1.02); /* Slight scale effect */
  }
  .coin-mint-text:active {
    transform: scale(0.98); /* Press effect */
  }

  .coin-time {
    color: #94a3b8;
    font-size: 0.95em;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px; /* Add some space from copy button */
  }
  
  /* Remove the inner scroll container styles */
  #newly-created-coins-scroll {
    /* Remove max-height and overflow to let main page scroll */
    padding-right: 0;
    margin-bottom: 24px; /* Increased from 20px */
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Remove scrollbar styles since we're not using inner scroll */
  #newly-created-coins-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .ca-toast-in-block {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ca-toast-in-block.show {
    opacity: 1;
    pointer-events: auto;
  }
  #newly-created-coins {
    position: relative;
  }
  
  .coin-chart-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    border: none;
    outline: none;
    padding: 12px; /* Increased padding */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    height: 48px; /* Increased from 44px */
    width: 48px; /* Increased from 44px */
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    position: absolute; /* Position absolutely */
    top: 24px; /* Position at top with padding offset */
    right: 28px; /* Position at right with padding offset */
  }
  .coin-chart-btn:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffb300 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
  }
  .coin-chart-btn svg {
    display: block;
    stroke: #ffffff;
    width: 22px; /* Explicit size */
    height: 22px; /* Explicit size */
  }
  
  /* Toast container for SolFM */
  #newly-created-coins-toast-container-solfm {
    position: relative;
    width: 100%;
    min-height: 20px;
    text-align: center;
    margin-top: 10px;
  }
  
  #ca-toast-in-block-solfm {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  #ca-toast-in-block-solfm.show {
    opacity: 1;
    pointer-events: auto;
  }
  