/* === Layout & Flexbox === */
.tw-flex {
    display: flex;
}

.tw-flex-wrap {
    flex-wrap: wrap;
}

.tw-justify-center {
    justify-content: center;
}

.tw-items-center {
    align-items: center;
}


/* === Spacing === */
.tw-p-2 {
    padding: 0.5rem;
}

.tw-p-4 {
    padding: 1rem;
}

.tw-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.tw-py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.tw-gap-2 {
    gap: 0.5rem;
}

.tw-gap-4 {
    gap: 1rem;
}


/* === Typography === */
.tw-font-arial {
    font-family: Arial, sans-serif;
}

.tw-font-bold {
    font-weight: 700;
}

.tw-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.tw-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}


/* === Colors === */
.tw-bg-green-100 {
    background-color: #d1fae5;
}

.tw-bg-red-100 {
    background-color: #fee2e2;
}

.tw-bg-red-200 {
    background-color: #fecaca;
}

.tw-text-green-700 {
    color: #15803d;
}

.tw-text-red-600 {
    color: #dc2626;
}

.tw-text-gray-700 {
    color: #374151;
}


/* === Size === */
.tw-w-6 {
    width: 1.5rem;
}

.tw-w-fit {
    width: fit-content;
}

.tw-h-6 {
    height: 1.5rem;
}


/* === Display & Interactivity === */
.tw-inline-block {
    display: inline-block;
}

.tw-cursor-pointer {
    cursor: pointer;
}