/* ScyllaDB Documentation - Custom Styles */

/* Reset and base styles */
* {
    box-sizing: border-box;
}

/* Smooth transitions for interactive elements */
.card {
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Link hover animation */
a {
    transition: color 0.2s ease;
}

/* Card link styling */
.card a {
    display: inline-block;
}

.card a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Custom scrollbar for consistency */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1f2e;
}

::-webkit-scrollbar-thumb {
    background: #3d4559;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4d5569;
}

/* Selection color */
::selection {
    background: rgba(61, 193, 195, 0.3);
    color: white;
}
