.flex {
    display: flex;
}

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

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

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

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.underline {
    text-decoration: underline;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.w-1\/3 {
    width: 33.33333%;
}

.border-gray {
    border-style: solid;
    border-width: 1px;
    border-color: #CCB;
}

.border-b-gray {
    border-style: solid;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 1px;
    border-color: #CCB;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-light {
    background-color: #fcfcfc;
}

.bg-red-500 {
    background-color: #FF0000;
}

.bg-green-500 {
    background-color: #069c06;
}

.text-white {
    color: #FFF;
}

.text-red {
    color: #FF0000;
}

.text-black {
    color: #000;
}

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

.rounded {
    border-radius: 1rem;
}