/* Custom styles for Crypto Bot dashboard */
/* Note: Tailwind utility classes are applied inline via CDN. This file is for overrides only. */

/* Smooth transitions */
a, button {
    transition: all 0.15s ease-in-out;
}

/* Table hover effect */
table tbody tr:hover {
    background-color: rgba(31, 41, 55, 0.5);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}
