@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes posterLoading {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}
.cursor-pointer {
    cursor: pointer;
}
.user-select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.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;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-white {
    color: white;
}
.text-muted {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.text-danger {
    color: #f56c6c;
}
.flex {
    display: flex !important;
}
.flex-col {
    flex-direction: column;
}
.gap-6 {
    gap: 6px;
}
.gap-12 {
    gap: 12px;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-1 {
    flex: 1;
}
.min-w-0 {
    min-width: 0;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.confirm-dialog .flex.gap-12.mb-20 {
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.p-15 {
    padding: 15px;
}
.p-20 {
    padding: 20px;
}
.p-2 {
    padding: 2px;
}
.overflow-hidden {
    overflow: hidden;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.word-break {
    word-break: break-word;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.search-result-item:not(.display-none) {
    display: flex;
    gap: 12px;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}
.display-none {
    display: none;
}
.hidden {
    display: none !important;
}
.display-block {
    display: block;
}
.display-flex {
    display: flex;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.grid-display {
    display: grid;
    gap: 12px;
}
.empty-placeholder {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}
.top-12 {
    top: 12px;
}
.right-12 {
    right: 12px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
.animate-fade-in-scale {
    animation: fadeInScale 0.3s ease-out forwards;
}
.animate-fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}
.animate-slide-in-up {
    animation: slideInUp 0.3s ease-out forwards;
}
.animate-slide-in-down {
    animation: slideInDown 0.3s ease-out forwards;
}
.opacity-transition {
    transition: opacity 0.3s ease-out;
}
.transform-transition {
    transition: transform 0.3s ease-out;
}
.smooth-transition {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
