/* Copyright (c) Crown Copyright (Department for Transport). Licensed under The MIT License (MIT).  See License file in the project root for license information. */
/* width */
.moj-message-list::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.moj-message-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.moj-message-list::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    .moj-message-list::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
