a {
    text-decoration: none;
    color: rgb(40,106,188);
}

.no-bullet {
    list-style: none;
}

.breadcrumb {
    font-size: 14px;
    text-decoration: none
}

.breadcrumb-item {
    background-color: rgb(249, 246, 246);
    color: #7b7d7f;
}
.pave {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: rgb(239, 239, 239);
    color: black;
    font-size: 1em;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pave:hover {
    background-color: rgb(220, 220, 220);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.pave:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}