.te-hidden {
    display: none !important;
}

.te-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.te-text-muted {
    color: var(--te-color-muted) !important;
}

.te-text-primary {
    color: var(--te-color-primary) !important;
}

.te-text-accent {
    color: var(--te-color-accent) !important;
}

.te-text-danger {
    color: var(--te-color-danger) !important;
}

.te-bg-card {
    background: var(--te-color-card) !important;
}

.te-bg-surface {
    background: var(--te-color-surface) !important;
}

.te-border {
    border: 1px solid var(--te-color-border) !important;
}

.te-border-top {
    border-top: 1px solid var(--te-color-border) !important;
}

.te-border-right {
    border-right: 1px solid var(--te-color-border) !important;
}

.te-border-bottom {
    border-bottom: 1px solid var(--te-color-border) !important;
}

.te-border-left {
    border-left: 1px solid var(--te-color-border) !important;
}

.te-flex {
    display: flex !important;
}

.te-inline-flex {
    display: inline-flex !important;
}

.te-grid {
    display: grid !important;
}

.te-block {
    display: block !important;
}

.te-inline-block {
    display: inline-block !important;
}

.te-items-center {
    align-items: center !important;
}

.te-items-start {
    align-items: flex-start !important;
}

.te-items-end {
    align-items: flex-end !important;
}

.te-justify-between {
    justify-content: space-between !important;
}

.te-justify-center {
    justify-content: center !important;
}

.te-justify-end {
    justify-content: flex-end !important;
}

.te-w-full {
    width: 100% !important;
}

.te-h-full {
    height: 100% !important;
}

.te-min-w-0 {
    min-width: 0 !important;
}

.te-overflow-hidden {
    overflow: hidden !important;
}

.te-overflow-auto {
    overflow: auto !important;
}

.te-text-left {
    text-align: left !important;
}

.te-text-center {
    text-align: center !important;
}

.te-text-right {
    text-align: right !important;
}

.te-font-normal {
    font-weight: 400 !important;
}

.te-font-semibold {
    font-weight: 600 !important;
}

.te-font-bold {
    font-weight: 700 !important;
}

.te-uppercase {
    text-transform: uppercase !important;
}

.te-no-underline {
    text-decoration: none !important;
}

.te-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .te-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .te-hide-desktop {
        display: none !important;
    }
}