/* Utility Classes */

/* Display utilities */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.flex {
    display: flex !important;
}

/* Text alignment */
.text-center {
    text-align: center;
}

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

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

/* Spacing utilities */
.m-0 {
    margin: 0;
}

.m-10 {
    margin: 10px;
}

.m-15 {
    margin: 15px;
}

.m-20 {
    margin: 20px;
}

.m-30 {
    margin: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

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

/* Font sizes */
.text-xs {
    font-size: 10px;
}

.text-sm {
    font-size: 12px;
}

.text-md {
    font-size: 14px;
}

.text-lg {
    font-size: 16px;
}

.text-xl {
    font-size: 20px;
}

.text-2xl {
    font-size: 24px;
}

.text-3xl {
    font-size: 32px;
}

.text-giant {
    font-size: 80px;
}

/* Flexbox utilities */
.justify-center {
    justify-content: center;
}

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

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

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

.flex-gap-10 {
    gap: 10px;
}

.flex-gap-20 {
    gap: 20px;
}

/* Width utilities */
.w-150 {
    width: 150px;
}

.w-200 {
    width: 200px;
}

.w-full {
    width: 100%;
}

/* Height utilities */
.h-150 {
    height: 150px;
}

.h-200 {
    height: 200px;
}

/* Color utilities */
.text-accent {
    color: var(--pixel-accent);
}

.text-warning {
    color: var(--pixel-warning);
}

.text-danger {
    color: var(--pixel-danger);
}

.text-success {
    color: var(--pixel-success);
}

/* Box sizing */
.box-200 {
    width: 200px;
    height: 200px;
}

/* Back link styling */
.back-link {
    color: var(--pixel-accent);
    font-size: 10px;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}