@keyframes flashError {
    0%, 100% { background-color: #fae8e6; border-color: #e0b4b0; }
    50% { background-color: #fff; border-color: #dfdfdf; }
}

.flash-error {
    animation: flashError 0.8s ease-in-out 2;
}

#notification {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    width: 100%;
    pointer-events: none;
    text-align: center;
}

@media screen and (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

.auth-one-bg {
    background-image: unset !important;
    background-position: center;
    background-size: cover;
}

.badge { padding: 8px; }

.support-preview-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
}
.support-preview-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.support-preview-grid .support-preview-item {
    position: relative;
}
.support-preview-grid .support-preview-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}
.support-preview-grid .support-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

