﻿/* Styling the scrollbar in Chrome */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #ddd;
}
/* Styling the scrollbar in Firefox */
::-moz-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
}

::-moz-scrollbar-thumb {
    background-color: #ddd;
}
/* Styling the scrollbar in Safari */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}
