.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/* Ekstra küçük buton stili */
.btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

/* Log tablosundaki yapışkan başlık */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f8f9fa;
}

/* Ön izleme görseli kaldır butonu */
#btn-remove-image {
    background-color: rgba(220, 53, 69, 0.85);
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

#btn-remove-image:hover {
    background-color: rgb(220, 53, 69);
}
