.card {
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-buttons a {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.row>[class*='col-'] {
    display: flex;
}

.card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Override for the mdb stuff that messes with css */
.btn.btn-sm{
    margin-top: 0;
    text-transform:none;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    padding: 0.25rem 0.5rem;
}