/* Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--luxury-card);
    border: 1px solid var(--luxury-border);
    border-left: 4px solid var(--strava-orange);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-dropdown {
    background: var(--luxury-card) !important;
    border: 1px solid var(--luxury-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    max-height: 400px;
    overflow-y: auto;
}

.notification-dropdown .dropdown-header {
    background: var(--luxury-gray);
    color: var(--luxury-text);
    border-bottom: 1px solid var(--luxury-border);
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    transition: background-color 0.2s ease;
}

.notification-item:hover {
    background: rgba(252, 76, 2, 0.05);
}

.notification-item.unread {
    background: rgba(252, 76, 2, 0.02);
}

.notification-item .border-bottom {
    border-color: var(--luxury-border) !important;
}

#notification-badge {

    line-height: 18px;
    padding: 0.1rem 0.7rem;
}

/* Progress bars for activities */
.activity-progress {
    background: var(--luxury-gray);
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
    margin: 0.5rem 0;
}

.activity-progress .progress-bar {
    background: linear-gradient(90deg, var(--strava-orange) 0%, var(--strava-orange-light) 100%);
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Activity status colors */
.status-scheduled { background: var(--luxury-gray) !important; }
.status-starting { background: var(--luxury-warning) !important; }
.status-in-progress { background: var(--strava-orange) !important; }
.status-completed { background: var(--luxury-success) !important; }
.status-cancelled { background: var(--luxury-danger) !important; }