/* Layout classes */

.flex {
    display: flex;
    gap: 12px 12px;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}
