@tailwind base;
@tailwind components;
@tailwind utilities;

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    scrollbar-width: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
}

@media screen {
    .pdf-only {
        display: none;
    }
}

@media print {
    .screen-only {
        display: none;
    }
}

.ant-table-thead>tr>th {
    background: linear-gradient(to right, #3071b9, #6a11cb);
    color: white;
}