body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background-color: #ffffff;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #dee2e6;
  line-height: 1.5em;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 45px;
  margin-right: 0px;
  border-radius: 50%;
  
}

.logo-title {
  display: inline;
  font-size: 24px;
  font-weight: 700;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-left: 40px; /* Align nav links towards left, right after the logo */
  margin-right:auto;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 600;
}

.nav-link:hover {
  color: #0045b4;
}


.activnav {
  color: #0045b4;   
 }
 



/* Existing styles here... */

.xpumps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  justify-content: center;
}

.token-container {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  margin: 10px;
  max-width: 450px;
}

.token-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.token-details {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  overflow: hidden;
}

.token-details .name {
  font-weight: bold;
  font-size: 1.2em;
}

.token-details .description {
  margin-top: 5px;
  margin-bottom:10px;
}

.token-details .link {
  margin-top: 5px;
  color: #0045b4;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.token-details .link:hover {
  text-decoration: underline;
}

.token-details .twitter {
  margin-top: 5px;
}

.token-details .twitter a {
  color: #0045b4;
  text-decoration: none;
  font-weight: 600;

}

.token-details .twitter a:hover {
  text-decoration: underline;
}


#latestMemes {
  text-align: left;
  font-size: 20px;
  margin: 20px 0;
  padding: 8px;
  background-color: #4CAF70;
  color: #ffffff;
  border-radius: 5px;
}

#latestMemes a {
  color: #1da1f2;
  text-decoration: none;
  font-weight: 600;
}

#latestMemes a:hover {
  text-decoration: underline;
}

.launch-btn {
    background-color: #4CAF70; /* Green color */
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.launch-btn:hover {
    background-color: #45a062; /* Slightly darker green */
}


