/* Utility Classes - Replacing common inline styles */

/* Image Sizing Utilities */
.img-avatar-sm {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.img-avatar-md {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.img-avatar-lg {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.img-avatar-xl {
    width: 50px;
    height: 50px;
    object-fit: cover;
}


.img-preview {
    max-width: 150px;
}

/* Positioning Utilities */


.pos-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
    max-height: 100%;
    overflow: hidden;
}

/* Height Utilities */
.h-200 {
    height: 200px;
}


.performer-image-height {
    height: 300px;
    overflow: hidden;
}

/* Text Shadow Utilities */

/* Font Size Utilities */
.fs-2-5rem {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: bold;
}

.fs-3rem {
    font-size: 3rem;
}

.fs-2rem {
    font-size: 2rem;
}

.min-h-44 {
    min-height: 44px;
}

.fs-1rem {
    font-size: 1rem;
    text-transform: uppercase;
}

.fs-0-7rem {
    font-size: 0.7rem;
}

.fs-0-75rem {
    font-size: 0.75rem;
}

.fs-0-65rem {
    font-size: 0.65rem;
}

/* Display and Visibility Utilities */
.hide-element {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
    left: -9999px;
}

/* Dropdown Utilities */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

/* Text Overflow Utilities */
.text-ellipsis-2-lines {
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Background Image Utilities */
.bg-event-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Border Utilities */

/* Flex Utilities */

/* HTMX Indicator Utilities */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline-block;
}

.htmx-request.htmx-indicator {
    display: inline-block;
}



/* Cursor utilities */
.cursor-pointer {
    cursor: pointer;
}

/* Icon size utilities */
.icon-4rem {
    font-size: 4rem;
}

.icon-warning {
    color: #ffc107;
}

/* Scrollable container utilities */
.scroll-container-200 {
    max-height: 200px;
    overflow-y: auto;
}

.scroll-container-200-dark {
    max-height: 200px;
    overflow-y: auto;
    background-color: var(--theme-darker);
}

/* Progress bar height utilities */
.progress-lg {
    height: 30px;
}

/* Display utilities for forms */
.d-inline-form {
    display: inline;
}

