/**
 * @file style.css
 * @description Custom stylesheet for Hybrid OU Transfer Utility.
 * Primarily handles Webkit scrollbar styling for the execution logs container.
 * All other styling is managed natively via Tailwind CSS utility classes in index.html.
 */

/* Custom scrollbar styling for the log container */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f8fafc; /* Tailwind slate-50 */
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Tailwind slate-300 */
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* Tailwind slate-400 */
}