/* Dashboard v3.2 Styles - Activity Tracking */

/* Activity-specific styles */
.activity-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff88;
    padding: 15px;
    margin: 10px 0;
}

.activity-card.active {
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
}

.skill-badge {
    display: inline-block;
    background: #00ff88;
    color: #000;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    margin: 5px 0;
}

.skill-badge.coding { background: #00aaff; }
.skill-badge.debugging { background: #ff6b6b; }
.skill-badge.reviewing { background: #9b59b6; }
.skill-badge.testing { background: #f39c12; }
.skill-badge.monitoring { background: #1abc9c; }
.skill-badge.idle { background: #95a5a6; }

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    margin: 10px 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88 0%, #00aaff 100%);
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.activity-text {
    font-size: 11px;
    color: #888;
    margin: 5px 0;
    font-style: italic;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.online { background: #00ff00; }
.status-indicator.busy { background: #ffaa00; animation: pulse 1s infinite; }
.status-indicator.offline { background: #ff0000; }

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

.activity-section {
    margin-top: 20px;
}

.section-header {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ff88;
}
