/* Custom styles to supplement Bulma */

:root {
    --primary-color: #00d1b2;
    /* Bulma primary */
}

/* Ensure footer sticks to bottom if content is short (optional, Bulma handles layout well) */
html,
body {
    min-height: 100vh;
    background-color: #f5f5f5;
}

/* Custom overrides */
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content {
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
}