/* TOAST AKTYWNOŚCI (prawy dolny róg) */
.ff-activity-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border: 1px solid rgba(246, 195, 67, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ff-activity-toast--hidden {
    transform: translateX(400px);
    opacity: 0;
    pointer-events: none;
}

.ff-activity-toast--visible {
    transform: translateX(0);
    opacity: 1;
}

.ff-activity-toast__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(246, 195, 67, 0.1);
    border-bottom: 1px solid rgba(246, 195, 67, 0.2);
    color: #f6c343;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ff-activity-toast__close {
    background: none;
    border: none;
    color: #f6c343;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.ff-activity-toast__close:hover {
    opacity: 1;
}

.ff-activity-toast__body {
    padding: 16px;
}

.ff-activity-toast__body a {
    color: #f5f5f5;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.ff-activity-toast__body a:hover {
    color: #f6c343;
}

.ff-activity-toast__body strong {
    color: #f6c343;
    font-weight: 600;
}

.ff-activity-toast__body span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

#ff-activity-user {
    font-size: 14px;
    margin-bottom: 4px;
}

#ff-activity-action {
    color: #aaa;
    font-size: 12px;
}

#ff-activity-photo {
    color: #f6c343;
    font-size: 13px;
    margin-top: 4px;
    font-style: italic;
}

/* Responsywność - na mobile mniejszy i niżej (żeby nie blokować contentu) */
@media (max-width: 768px) {
    .ff-activity-toast {
        width: calc(100% - 40px);
        max-width: 300px;
        bottom: 80px;
        right: 20px;
    }
}
