.center{
    margin-top: 50px;
    width: 100%;
}

.center p{
    margin: 0;
}

.innerCenter{
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.listTitle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    padding: .625rem .9375rem .625rem .9375rem;
    background-color: var(--lightWhite);
    border-radius: .3125rem;
    border: solid 3px var(--themeColor-dark);
    box-shadow: 5px 4px var(--themeColor-dark);
    margin-bottom: 20px;
}

h1{
    color: var(--themeColor-dark);
    font-weight: 550;
    font-size: 25px;
    margin-bottom: 0;
}

.listTitle p{
    color: var(--themeColor-dark);
    font-weight: 550;
    margin-bottom: 0;
}

.alert-success{
    margin-bottom: 40px;
}

/* LIST */
.listContainer{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 20px;
    /* align-items: center; */
}

.bbsContainer{
    background-color: var(--bs-action-bg);
    border-radius: 6px;
    box-shadow: var(--themeColor-dark) 0 0 5px 0;
    max-width: 500px;
}

.innerBbs{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
}

.infoCollection{
    height: 70px;
    display: flex;
    padding: 0 3%;
}

/* BANDAGE */
.badgeStatus{
    display: flex;
    align-items: center;
    margin-right: 3%;
}

.badgeStatus div{
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center img{
    margin-right: 7px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.mainInfo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mainInfo p{
    font-size: 16px;
    font-weight: 600;
}

button{
    z-index: 0;
}

.badge{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.badge svg{
    vertical-align: text-top;
}

.text-bg-primary a{
    display: block;
    position: relative;
    height: 10px;
    margin-left: 2px;
}

.text-bg-danger , .text-bg-success{
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .center{
        padding: 0 2%;
    }

    .listContainer{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(319px,1fr));
        gap: 20px;
        align-items: center;
    }
}

@media screen and (max-width: 700px) {
    .center{
        padding: 0 2%;
    }

    .listContainer{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(300px,500px));
        gap: 20px;
        align-items: center;
        margin: auto;
    }
}