/* Activity Notification Styles */
.activity-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100000; /* Increased to be sure */
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 350px;
}

.activity-toast.active {
    transform: translateY(0);
}

.at-icon {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #E64A19;
    flex-shrink: 0;
}

.at-content {
    flex: 1;
}

.at-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
    display: block;
}

.at-desc {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
    line-height: 1.4;
}

.at-time {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 5px;
    display: block;
}

.at-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.at-close:hover {
    color: #111827;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .activity-toast {
        left: 10px;
        right: 10px;
        bottom: 80px; 
        max-width: none;
    }
}
