body {
    font-family: 'Prompt', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif !important;
}

/* Custom Styles over Tailwind */

.custom-scrollbar::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #111827;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Ensure DataTables doesn't force a page-level scrollbar */
.dataTables_wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

table.dataTable {
    margin: 0 !important;
    width: 100% !important;
}

/* Premium Link Underline Animation */
.footer-link-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2dd4bf;
    /* brand-400 */
    transition: all 0.3s ease;
}

.footer-link-premium:hover::after {
    width: 100%;
}

/* Social Box New */
.social-box-new {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    /* gray-400 */
    transition: all 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.social-box-new:hover {
    background-color: #14b8a6;
    /* brand-500 */
    color: white !important;
    border-color: #14b8a6;
    transform: translateY(-0.375rem);
}

/* Ticker Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

.inner-glow {
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.02);
}