/* Taskbar Component CSS */

.taskbar-start {
    font-weight: bold;
    padding: 2px 8px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.taskbar-start::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ff0000 25%, #00ff00 25%, #00ff00 50%, #0000ff 50%, #0000ff 75%, #ffff00 75%);
}

.taskbar-programs {
    flex: 1;
    display: flex;
    gap: 4px;
    padding: 0 4px;
    overflow: hidden;
}

.taskbar-program {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    min-width: 120px;
    max-width: 200px;
}

.taskbar-program.active {
    font-weight: bold;
}

.taskbar-program-icon {
    width: 16px;
    height: 16px;
}

.taskbar-clock {
    padding: 2px 8px;
    min-width: 100px;
    text-align: center;
}

/* Taskbar separator */
.taskbar-separator {
    width: 2px;
    height: 20px;
    margin: 0 4px;
}

/* System tray (notification area) */
.taskbar-tray {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
}

.taskbar-tray-icon {
    position: relative;
    cursor: pointer;
    padding: 2px 4px;
    font-size: 14px;
    border-radius: 2px;
}

.taskbar-tray-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.taskbar-tray-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff0000;
    color: white;
    font-size: 9px;
    font-weight: bold;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* Urgent ticket indicator */
.taskbar-tray-icon.urgent {
    animation: urgent-pulse 1s ease-in-out infinite;
}

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