﻿/* Utilities */

.center {
    display: block !important;
    margin: auto;
}

.center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fit {
    width: fit-content;
}

.no-margin {
    margin: 0 !important;
}

.fill-content {
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden;
}

.custom-scroll {
    overflow-y: auto;
}

    /* width */
    .custom-scroll::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */
    .custom-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .custom-scroll::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

    /* Handle on hover */
    .custom-scroll::-webkit-scrollbar-thumb:hover {
        background: #555;
    }