

.albums .pagetitle h1 {
    font-weight: 700;
    border-bottom: 3px solid #012970;
    display: inline-block;
    padding-bottom: 10px;
}

.albums .card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.albums .card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px #EEE;
}

.albums .card-title {
    font-weight: 600;
    color: #012970;
}

.albums .breadcrumb-item a {
    color: #012970;
}

.albums .breadcrumb-item.active a {
    color: black;
}

.albums .page-item.active .page-link {
    background-color: #012970;
    border-color: #012970;
    color: #fff; /* Adicione essa linha para definir a cor do texto do link ativo */
}

.albums .page-link {
    color: #012970;
    transition: background-color 0.3s;
}

.albums .page-link:hover {
    background-color: #e0e0e0;
}