/* Custom smooth transitions for the 15 tools */
.tool-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tool-card:active {
    transform: scale(0.95);
}

/* Hide scrollbar for console but allow scrolling */
#console {
    scrollbar-width: thin;
    scrollbar-color: #333 #1A1A1A;
}

#console::-webkit-scrollbar {
    width: 6px;
}

#console::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}