.cards {
    /*background-color: rgba(18, 18, 18);*/
    height: fit-content;

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-start;
}

.add-recipe-card {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.add-recipe-card-btn {
    aspect-ratio: 1 / 1;
    width: 50%;
    background-color: white;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0);
}

.add-recipe-card-btn:hover {
    .bi-plus-square-fill {
        color: var(--bs-success-border-subtle)
    }
}

.bi-plus-square-fill {
    font-size: 100px;

    color: var(--bs-success)
}



h3 {
    width: 100%;
    text-align: center;
}

.card-custom {
    height: fit-content;
}

.card-body {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.card-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

.view-recipe-btn {
    width: 75%;
    height: 100%;
}

.del-btn {
    float: right;
    color: var(--bs-danger);
    font-size: 100%;
}

.del-btn:hover {
    color: var(--bs-danger-border-subtle);
}

.none-card .btn-primary {
    width: 100%;
}

/*img {*/
/*    border-bottom: 10px solid var(--bs-body-bg);*/
/*    border-left: 10px solid var(--bs-body-bg);*/
/*    border-right: 10px solid var(--bs-body-bg);*/
/*    margin-top: 10px;*/
/*}*/

@media only screen and (min-width: 768px) {  /* md breakpoint */
    .card-body {
        flex-direction: column;
    }
}