/* Laravel Docs custom CSS */

/* Set the accent color */
:root {
    accent-color: #0068ff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer !important;
}

::-webkit-scrollbar-track {
    background: transparent;
    cursor: pointer !important;
}

::-webkit-scrollbar-thumb {
    background: #919191;
    border-radius: 5px;
    cursor: pointer !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
    cursor: pointer !important;
}

/* Custom Font */
{
    font-family: 'figtree', sans-serif;
}

/* Set the browsers scheme to dark if class is present */
.dark {
    color-scheme: dark;
}

/* Prevent text selection */
.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Code Highlighting */
.highlight .shiki {
    background: transparent none !important;
}
