
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
    font-family: 'Outfit', sans-serif;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4f46e5; 
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
    padding-left: 50%;
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
.sarkari-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border: 1px solid #249667;
    background-color: #ffffff;
}
.sarkari-post-content th {
    background-color: rgba(36, 150, 103, 0.1);
    color: #374151;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}
.sarkari-post-content td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    background-color: #ffffff;
}
.sarkari-post-content tr:nth-child(even) td {
    background-color: #f9fafb;
}
.sarkari-post-content tr:hover td {
    background-color: #f3f4f6;
}
.sarkari-post-content {
    overflow-x: auto;
}
