.BN-icon-size {
    max-width: 42px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle; /* Align the image in the middle with the text */
}

.BN-reduced-padding-card {
    background-color: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e0e0e0; /* Add a border around each card */
}

.BN-card-body {
    padding: 9px;
    display: flex;
    align-items: center; /* Ensure the icon and text are vertically aligned */
    justify-content: flex-start; /* Ensure everything is left-aligned */
    height: 100%;
}

.category-item {
    position: relative;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: stretch;
    height: 100%;
}

.category-item:nth-child(3n+1) {
    border-left: none; /* Remove the left border from the first column */
}

.category-item:nth-last-child(-n+3) {
    border-bottom: none; /* Remove the bottom border from the last row */
}

.BN-reduced-padding-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.BN-reduced-padding-card:hover .card-title {
    color: #419bc0;
}

.card-title {
    margin: 0;
    display: inline-block;
    vertical-align: middle; /* Align the text with the icon */
    font-size: 1.2rem; /* Adjust the font size for better visibility */
}

@media (max-width: 767px) {
    .category-item:nth-child(3n)::before {
        display: block;
    }
    .category-item:nth-child(2n)::before {
        display: none;
    }
    .category-item:nth-last-child(-n+3)::after {
        display: block;
    }
    .category-item:nth-last-child(-n+2)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .category-item::before {
        display: none;
    }
    .category-item:last-child::after {
        display: none;
    }
}
.loading-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 5px;
        background-color: #419bc0;
        z-index: 9999;
        transition: width 0.3s ease-out;
    }