body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #002c26;
  color: #FFF; /* Sets font color to white */
  font-size: var(--app-font-size);
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

h1, h2, h3, h4, h5, h6, span, div, label {
  color: inherit; /* Inherits the color from the body */
  text-transform: uppercase;
}

table, th, td {
  font-size: medium;
}
/* 
div, span,  td, th, li, a, button, input, label {
  font-size: var(--app-font-size);
} */

:root {
  --app-font-size: medium;
}


@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-spin-reverse {
  animation: spin-reverse 1.5s linear infinite;
}

.animate-pulse-scale {
  animation: pulse-scale 1s ease-in-out infinite;
}
@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-spin-reverse {
  animation: spin-reverse 1.5s linear infinite;
}

.animate-pulse-scale {
  animation: pulse-scale 1s ease-in-out infinite;
}
/* src/App.css */

.App {
	min-height: 100vh;
  }
  
  .Content {
	flex: 1;
	padding: clamp(1vw, 2vw, 3vw);
  }
  .iridescence-container {
	width: 100%;
	height: 100%;
  }
  
  /* Generic Container */
  .content-container {
	padding: 16px;
	min-height: 100vh;
  }
  
  /* Section Heading */
  .section-heading {
	margin-bottom: 24px;
  }
  
  .section-heading h1 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
  }
  
  .section-heading p {
	font-size: 14px;
	color: #595959;
	margin-bottom: 16px;
  }
  
  /* Card Grid */
  .card-grid {
	display: grid;
	grid-template-columns: 1fr; /* Mobile default */
	gap: 16px;
  }
  
  .card-grid--three {
	grid-template-columns: 1fr; /* Mobile default for 3-column modifier */
  }
  
  /* Card Styling */
  .card-summary {
	background: #1a5c4f6e;
	padding: 16px;
	margin: 10px;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 200px;
  }
  
  .card-summary:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .card-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
  }
  
  .card-title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	color: #fff;
  }
  
  .card-description {
	font-size: medium;
	color: #e0e0e0;
	margin-bottom: 12px;
	flex-grow: 1;
  }
  
  .card-summary-link {
	color: #fff;
	text-decoration: none;
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
  }
  
  .card-summary-link:hover {
	text-decoration: underline;
	border: 1px dashed #ddd;
  }
  
  /* Ant Design Card Overrides */
  .ant-card {
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 200px;
	height: 100%;
  }
  
  .ant-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .ant-card-head {
	border-bottom: none;
  }
  
  .ant-card-head-title {
	font-size: 16px;
	font-weight: 500;
  }
  
  .ant-card-body {
	padding: 16px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  
  .ant-card-body p {
	font-size: medium;
	color: #8c8c8c;
	margin-bottom: 12px;
	flex-grow: 1;
  }
  
  /* Sidebar Styles */
  .ant-layout-sider,
  .ant-menu {
	background: #002c26 !important;
  }
  
  .ant-menu {
	color: #ffffff !important;
  }
  
  .SidebarHeader {
	text-align: center;
	margin: 120px 0 50px;
  }
  
  .SidebarLogo {
	width: 100px;
	height: auto;
  }
  
  .SidebarIcon {
	width: clamp(1rem, 2vw, 2rem);
	object-fit: contain;
	margin-right: 0.3rem;
	transition: transform 0.2s ease, filter 0.2s ease;
	filter: brightness(0) invert(1);
  }
  
  .SidebarHeader h1,
  .ant-menu-item,
  .anticon,
  p {
	color: #ffffff !important;
  }
  
  .ant-menu-item {
	font-size: medium;
  }
  
  .ant-menu-item:not(.ant-menu-item-selected):hover {
	background: #1a5c4f6e !important;
  }
  
  .ant-menu-item-selected {
	background: #49eaca3f !important;
  }
  
  .ant-menu-divider {
	background: #ffffff !important;
  }
  
  .krc20-tokens-menu .ant-menu-submenu-arrow,
  .krc20-tokens-menu .ant-menu-submenu-arrow::before,
  .krc20-tokens-menu .ant-menu-submenu-arrow::after {
	color: #fff !important;
	background: #fff !important;
  }
  
  /* Header Styles */
  .Header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: clamp(1rem, 2vw, 3rem);
	background: #1a5c4f;
	border-radius: clamp(1rem, 2vw, 2.5rem);
	position: relative;
  }
  .headerLeft-subheading{
	padding: 0 0 0 clamp(0.5rem, 1vw, 1.5rem);
	margin: 0px;
}
  
  .HeaderLeft {
	/* display: flex; */
	align-items: center;
  }
  
  .HeaderLogo {
	width: clamp(7rem, 6vw, 8rem);
	height: auto;
	/* margin-right: clamp(1rem, 2vw, 2.5rem); */
  }
  
  .HeaderLeft h1 {
	color: white;
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: x-large;
  }
  
  .HeaderRight {
	display: flex;
	align-items: center;
  }
  
  .HeaderMenu {
	list-style: none;
	display: flex;
	gap: clamp(1rem, 1.5vw, 2rem);
	padding: 0;
	margin: 0;
  }
  
  .HeaderMenu li {
	font-size: medium;
	text-transform: uppercase;
	color: white;
	cursor: pointer;
	font-weight: bold;
  }
  
  .HeaderMenu a {
	color: white;
	text-decoration: none;
	font-weight: bold;
  font-size: medium;
  }
  
  .HeaderMenu li:hover {
	text-decoration: underline;
	color: #e5e5e5;
  }
  
  .MenuToggle {
	display: none; /* Hidden on desktop */
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
  }
  
  /* Footer Styles */
  .Footer {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #1a5c4f;
	color: white;
	text-align: center;
	padding: clamp(1rem, 1.5vw, 2rem);
	border-top: 1px solid #ddd;
	border-radius: 22px;
	position: relative;
	width: calc(100% - clamp(1.5rem, 3vw, 5rem));
	bottom: 0;
	margin: clamp(0.5rem, 1vw, 1.5rem) auto;
  }
  
  .FooterContent {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
  }
  
  .FooterLinks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
  }
  
  .FooterLinks a {
	color: #e0e0e0;
	text-decoration: none;
	display: flex;
	align-items: center;
	font-size: clamp(0.9rem, 1vw, 1.2rem);
  }
  
  .FooterLinks a:hover {
	text-decoration: underline;
  }
  
  .FooterCopyright {
	margin: 0;
	font-size: clamp(0.8rem, 0.9vw, 1rem);
  }
  
  /* Utility Styles */
  .SocialLinks a {
	font-size: clamp(1rem, 1.5vw, 1.5rem);
	margin: clamp(0.5rem, 1vw, 1rem) 0 0;
	color: #ffffff;
	text-decoration: none;
  }
  
  .search-bar {
	display: flex;
	justify-content: space-between;
	margin: clamp(2vh, 3vh, 5vh) auto;
	padding: 16px;
	background: #1a5c4f6e;
	border-radius: 8px;
  }
  
  .search-bar input {
	width: 100%;
	padding: clamp(0.1rem, 1vw, 0.25rem);
	font-size: medium;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	color: #333;
  }
  
  .search-bar button {
	padding: clamp(0.5rem, 1vw, 1.5rem) clamp(1rem, 2vw, 2rem);
	font-size: clamp(1rem, 1.25vw, 1.5rem);
	border: none;
	background: #1a5c4f;
	color: white;
	border-radius: 5px;
	cursor: pointer;
  }
  
  .utils-button-container {
	display: inline-flex;
	align-items: center;
  }
  
  .utils-button-container div {
	display: inline-flex;
	cursor: pointer;
	transition: transform 0.6s ease;
	position: relative;
  }
  
  .utils-button-container div:hover .utils-icon {
	animation: continuous-rotate 1.5s linear infinite;
  }
  
  @keyframes continuous-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
  }
  
  @keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(45deg); }
  }
  
  .utils-button-container div.clicked .utils-icon {
	animation: rotate 0.6s forwards;
  }
  
  .utils-icon {
	width: 24px;
	height: auto;
	filter: brightness(0) invert(1);
  }
  
  .label {
	text-transform: uppercase;
  }
  
  .last-updated {
	font-size: 14px;
	color: #fff;
	margin-top: 10px;
	display: block;
	text-align: center;
  }
  
  /* Tokenlist Specific Styles */
  .tokenlist-container {
	padding: 16px;
  }
  
  .tokenlist-container h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 24px;
	text-align: center;
  }
  
  /* Volume Summary */
  .volume-summary {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
  }
  
  .summary-card {
	background: #1a5c4f6e;
	padding: 16px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
  }
  
  .summary-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .summary-card h3 {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 8px;
  }
  
  /* Rotating Exchanges */
  .herpes-info-container {
	margin-bottom: 24px;
	overflow: hidden;
  }
  
  .herpes-info {
	padding: 16px;
	background: #1a5c4f6e;
	border-radius: 8px;
  }
  
  .herpes-ticker-wrapper {
	overflow: hidden;
  }
  
  .herpes-info-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	animation: ticker 30s linear infinite;
	width: fit-content;
  }
  
  @keyframes ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
  }
  
  .herpes-info-row:hover {
	animation-play-state: paused;
  }

.exchange24volbutton{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
 
  .exchange-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #1a5c4f;
	border-radius: 8px;
	min-width: 150px;
	cursor: pointer;
	flex-shrink: 0;
  }
  
  .exchange-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-bottom: 8px;
  }
  
  .exchange-details {
	color: #e0e0e0;
	text-align: center;
  }
  
  .exchange-details strong {
	font-size: 16px;
	display: block;
	color: #fff;
  }
  
  .exchange-details span {
	font-size: 14px;
  }
  
  /* View More Button Styles */
  .view-more-container {
	text-align: center;
	margin-top: 16px;
  }
  
  .view-more-button {
	padding: 8px 16px;
	background: #1a5c4f;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
  }
  
  .view-more-button:hover {
	background: #2a7c6f;
  }
  
  /* Pagination Card */
  .pagination {
	margin-bottom: 24px;
	padding: 16px;
	background: #1a5c4f6e;
	border-radius: 8px;
	text-align: center;
  }
  
  .pagination table {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
  }
  
  .pagination td {
	padding: 8px;
  }
  
  .pagination p {
	margin: 0;
	color: #e0e0e0;
	font-size: 14px;
  }
  
  .pagination button {
	padding: 6px 12px;
	font-size: 14px;
	background: #002c26;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease;
  }
  
  .pagination button:hover {
	background: #1a5c4f;
  }
  
  .pagination button:disabled {
	background: #666;
	cursor: not-allowed;
  }
  
  /* Token Table */
  .table-bar {
	margin-bottom: 24px;
	padding: 16px;
	background: #1a5c4f6e;
	border-radius: 8px;
	overflow-x: auto;
  }
  
  .table-wrapper {
	overflow-x: auto;
  }
  
  .token-table {
	width: 100%;
	border-collapse: collapse;
	color: #e0e0e0;
  }
  
  .token-table th,
  .token-table td {
	padding: 12px;
	text-align: center;
	border-bottom: 1px solid #ddd;
  }
  
  .token-table th {
	background: #002c26;
	font-weight: 500;
	font-size: 14px;
  }
  
  .token-table td {
	font-size: medium;
  }
  
  .fixed-col {
	position: sticky;
	background: #1a5c4f;
	z-index: 1;
  }
  
  .rank-col {
	left: 0;
	min-width: 50px;
  }
  
  .tick-col {
	left: 50px;
	min-width: 150px;
  }
  
  .token-table th:not(.fixed-col),
  .token-table td:not(.fixed-col) {
	min-width: 120px;
  }
  
  /* Top Categories */
  .top-categories {
	margin-bottom: 6vw;
  }
  
  .category-item {
	transition: background 0.3s;
  }
  
  .category-item:hover {
	background: #1a5c4f;
	border-radius: 4px;
	padding: 8px;
  }
  
  .category-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 8px;
  }
  
  .category-name {
	font-size: medium;
	font-weight: 500;
	color: #e0e0e0;
	word-break: break-word;
  }
  
  .category-value {
	font-size: small;
	padding: 4px 8px;
	border-radius: 4px;
	background: #1c3238;
	color: #00ff00;
	display: block;
	align-self: center;
  }
  
  /* Responsive Design */
  @media (min-width: 576px) and (max-width: 1079px) {
	.top-categories .ant-col-md-12 {
	  width: 50%; /* 2 columns between 576px and 1079px */
	}
  }
  
  @media (min-width: 768px) {
	.content-container {
	  padding: 24px;
	}
  
	.section-heading h1 {
	  font-size: 28px;
	}
  
	.section-heading p {
	  font-size: 16px;
	}
  
	.card-grid {
	  grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
	}
  
	.card-grid--three {
	  grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns for 3-card layouts */
	}
  
	.tokenlist-container {
	  padding: 24px;
	}
  
	.tokenlist-container h2 {
	  font-size: 28px;
	}
  
	.volume-summary {
	  flex-direction: row;
	  justify-content: space-around;
	}
  
	.summary-card {
	  flex: 1;
	  max-width: 45%;
	}
  
	.herpes-info {
	  padding: 24px;
	}
  }
  
  @media (min-width: 992px) {
	.top-categories .ant-col-xl-6 {
	  width: 25%; /* 4 columns at 1080px and above */
	}
  }
  
  @media (min-width: 1024px) {
	.content-container {
	  padding: 32px;
	}
  
	.section-heading h1 {
	  font-size: 32px;
	}
  
	.card-grid {
	  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
	}
  
	.card-grid--three {
	  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
	}
  
	.tokenlist-container {
	  padding: 32px;
	}
  
	.tokenlist-container h2 {
	  font-size: 32px;
	}
  
	.summary-card h3 {
	  font-size: 18px;
	}
  
	.pagination table {
	  max-width: 400px;
	}
  }
  
  @media (min-width: 1440px) {
	.content-container {
	  max-width: 1400px;
	  margin: 0 auto;
	}
  
	.tokenlist-container {
	  max-width: 1400px;
	  margin: 0 auto;
	}
  }
  
  @media (max-width: 575px) {
	.top-categories .ant-col-xs-24 {
	  width: 100%; /* 1 column below 576px */
	}
  }
  
  /* Responsive Design for iPad and Mobile (below 1024px) */
  @media (max-width: 1024px) {
	.Header {
	  flex-wrap: nowrap;
	  justify-content: space-between;
	  align-items: center;
	}
  
	.HeaderLeft {
	  flex-grow: 1;
	}
  
	.MenuToggle {
	  display: block;
	  position: absolute;
	  top: 50%;
	  right: 1rem;
	  transform: translateY(-50%);
	}
  
	.HeaderRight {
	  position: absolute;
	  top: 100%;
	  right: 0;
	  width: 200px;
	  max-height: 0;
	  overflow: hidden;
	  transition: max-height 0.3s ease-in-out;
	  background: #1a5c4f;
	  border-radius: 0 0 0 8px;
	  z-index: 10;
	}
  
	.HeaderRight.open {
	  max-height: 500px; /* Adjust based on menu height */
	}
  
	.HeaderMenu {
	  flex-direction: column;
	  align-items: flex-start;
	  padding: 1rem;
	  width: 100%;
	}
  
	.HeaderMenu li {
	  margin: 0.5rem 0;
	  width: 100%;
	}
  
	.HeaderMenu a {
	  display: block;
	  padding: 0.5rem 0;
	}
  
	.FooterLinks {
	  flex-direction: column;
	  align-items: center;
	}
  
	.FooterLinks a {
	  margin: 0.5rem 0;
	}
  }
  
  @media (max-width: 576px) {
	.HeaderLogo {
	  width: 3rem;
	}
  
	.HeaderLeft h1 {
	  font-size: 1rem;
	}
  
	.HeaderRight {
	  width: 150px; /* Smaller width for very small screens */
	}
  
	.HeaderMenu li {
	  font-size: 0.9rem;
	}
  
	.FooterLinks a {
	  font-size: 0.9rem;
	}
  }
  
  /* Image and Social Links */
  .token-info-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
  }
  
  .social-links {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-right: 80px;
  }
  
  .social-links li {
	margin-left: 15px;
  }
  
  .social-links a {
	display: inline-block;
	color: white;
	font-size: 24px;
	transition: transform 0.3s, color 0.3s;
  }
  
  .social-links a:hover {
	transform: scale(1.2);
	color: #49EACB;
  }
  
  /* Custom Button */
  .custom-cryptotool-button {
	background: #002c26;
	color: #fff;
	border-color: #002c26;
	transition: background 0.3s ease;
  }
  
  .custom-cryptotool-button:hover {
	background: #004d40 !important;
	border-color: #004d40 !important;
	color: #fff !important;
  }
  
  /* Input Style */
  .inputStyle {
	background: red; /* Removed quotes */
	color: #fff;
  }

  /* HeatmapComponent.css */

/* Container for the entire heatmap component */
.heatmap-container {
	padding: 20px;
	background-color: #002c26;
	color: #fff;
	text-align: center;
  }
  
  /* Title styling */
  .heatmap-title {
	margin-top: 5%;
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: 1px;
  }
  
  /* Description styling */
  .heatmap-description {
	font-size: 18px;
	font-weight: 400;
	color: #f1f1f1;
	margin-top: 10px;
	line-height: 1.6;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
  }
  
  /* Wrapper for the SVG to ensure centering */
  .svg-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	overflow: visible; /* Allow nodes to be visible even if they move outside the SVG bounds */
  }
  
  /* SVG styling */
  .heatmap-container svg {
	display: block;
	margin: 0 auto;
  }
  
  /* Error and loading messages */
  .error-message {
	color: red;
	text-align: center;
	font-size: 18px;
  }
  
  .loading-message {
	color: #fff;
	text-align: center;
	font-size: 18px;
  }
  
  /* Mobile adjustments */
  @media (max-width: 600px) {
	.heatmap-title {
	  font-size: 24px;
	  margin-top: 3%;
	}
  
	.heatmap-description {
	  font-size: 14px;
	  max-width: 90%;
	}
  
	.svg-wrapper {
	  padding: 0 10px;
	}
  }


  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }
  
  .rotate {
	animation: spin 1.5s linear infinite;
  }
  
.widget-container {
  display: flex;
  gap: 20px;
}
