.card {
    height: fit-content;
}

.card-body {
    border-radius: 8px;
    padding: 32px;
    background-color: white;
}

.card-title {
    font-size: var(--text-2xl);
    font-weight: bold;
}

.card-sub-title {
    font-size: var(--text-lg);
    font-weight: bold;
}

.btn {
    box-sizing: border-box;
    border-radius: 4px;
    border: 0;
}

.btn-primary {
    background-color: var(--color-hjOrange);
    color: white;
}

.btn-secondary {
    background-color: var(--color-hjBlue);
    color: white;
}

.btn-icon {
    background-color: transparent;
    color: var(--color-hjOrange);
}

.btn-error {
    background-color: #f33333;
    color: white;
}
