
.dropdown-menu li {
    text-align: center;
}

.dropdown-item {
    display: block;
    width: 100%;
}

.icon-large {
    font-size: 1.5rem;
}

.ice-card-no-image-size {
    max-width: 100px;
    max-height: 200px;
}

.nav-item .dropdown {
    text-align: center;
}

.progress-bar-custom {
    width: 0;
    color: white;
    font-size: 0.8rem;
    transition: width 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar-items-custom {
    background-color: #165C7D;
}

.progress-bar-pages {
    background-color: #369DA0;
}

.progress-bar-elements {
    background-color: #C6DAE7;
    color: #165C7D;
}

.grid {
    column-count: 1;
    column-gap: 1rem;
    direction: ltr;
    flex-direction: row;
    flex-wrap: wrap;

    @media (min-width: 768px) {
        column-count: 1;
    }

    @media (min-width: 1024px) {
        column-count: 2;
    }
    @media (min-width: 1200px) {
        column-count: 2;
    }
    @media (min-width: 1400px) {
        column-count: 3;
    }
    @media (min-width: 1800px) {
        column-count: 3;
    }
    @media (min-width: 2200px) {
        column-count: 4;
    }
}

.grid-item {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

card-body:hover {
    background-color: #5b80b2;
}

/* Default (Light mode) */

body {
    /*background-color: #341a40;*/
    background-color: #f8f9fa;
    color: #000;
}

/* Dark mode */
html[data-theme='dark'] body {
    background-color: #343a40;
    color: #ffffff;
}