.floating-status {
    position: fixed;
    top: 150px;    /* Odległość od góry */
    right: 20px;   /* Odległość od prawej krawędzi */
    width: 260px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Rozmycie tła strony pod widgetem */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.missing-fields-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    max-height: 150px;
    overflow-y: auto;
}

/* Animacja wejścia */
.floating-status:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.95);
}

/* Responsywność - na telefonach chowamy lub przesuwamy na dół */
@media (max-width: 768px) {
    .floating-status {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-bottom: 20px;
        box-shadow: none;
    }
}