.flex{
    display: flex;
}
.gap-4{
    gap: 1rem;
}
.gap-2{
    gap: 0.5rem;
}
.flex-col{
    flex-direction: column;
}
.justify-between{
    justify-content: space-between;
}
.items-center{
    align-items: center;
}
.border-b{
    border-bottom: 1px solid #e5e7eb;
}
.p-4{
    padding: 1rem;
}
.p-6{
    padding: 1.5rem;
}
.mb-1{
    margin-bottom: 0.25rem;
}
.mb-6{
    margin-bottom: 1rem;
}
.text-sm{
    font-size: 0.875rem;
}
