[x-cloak] {
    display: none !important;
}

.text-white {
    color: white;
}

.px-\[30px\] {
    padding-inline: 30px;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.active\:active-50:active {
    opacity: 0.5;
}

.text-red {
    color: red;
}

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

.justify-center {
    justify-content: center;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

/* Light text colors for dark theme with smaller headings */
.markdown-content {
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 1.05rem; /* Slightly larger base font */
}

/* Smaller headings with proportional spacing */
.markdown-content h1 {
  font-size: 1.8rem; /* Reduced from 2.2rem */
  font-weight: 600;
  color: #ffffff;
  margin: 2.5rem 0 1.25rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #444;
}

.markdown-content h2 {
  font-size: 1.5rem; /* Reduced from 1.8rem */
  font-weight: 600;
  color: #ffffff;
  margin: 2rem 0 1rem 0;
}

.markdown-content h3 {
  font-size: 1.25rem; /* Reduced from 1.4rem */
  font-weight: 600;
  color: #ffffff;
  margin: 1.75rem 0 0.9rem 0;
}

/* Adjusted spacing for smaller headings */
.markdown-content p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.markdown-content ul {
    list-style: disc;
}

.markdown-content ul,
.markdown-content ol {
  margin: 1.5rem 0;
  padding-left: 1.8rem;
}

.markdown-content li {
  margin-bottom: 0.6rem;
}

/* Rest of your existing styles... */
.markdown-content table {
  margin: 1.75rem 0;
}

.markdown-content pre {
  margin: 1.75rem 0;
  padding: 1.25rem;
}

.markdown-content img {
  margin: 2rem 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .markdown-content h1 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
  }

  .markdown-content h2 {
    font-size: 1.35rem;
    margin: 1.75rem 0 0.9rem 0;
  }

  .markdown-content h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.8rem 0;
  }

  .markdown-content {
    font-size: 1rem;
  }
}

.active-tab {
    background: var(--Button, linear-gradient(135deg, #ffb900, #00ffd1));
    color: #000;
}

.opacity-50 {
    opacity: 0.5;
}

.font-bold {
    font-weight: bold;
}

.tc-trade-card {
    border: 4px solid #ffffff40;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
    color: #fff;
}

.tc-trade-card.tc-active {
    background: linear-gradient(90deg, #22c55e, #14b8a6, #3b82f6);
    /* green → teal → blue */
}

.tc-trade-card.tc-inactive {
    background: linear-gradient(90deg, #ef4444, #ec4899, #8b5cf6);
    /* red → pink → purple */
}

.tc-transfer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.tc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #9333ea);
    /* blue → indigo → purple */
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.tc-btn span {
    font-weight: bold;
}

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

.tc-btn:hover:not(:disabled) {
    opacity: 0.8;
}

.tc-selected-count {
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.tc-info-text {
    font-weight: 600;
}

.tc-info-text.tc-loading {
    animation: tc-pulse 1.5s infinite;
}

.tc-link {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 8px;
}

/* Pulse animation */
@keyframes tc-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}
