/* Additional CSS for improved interactions */
.icon {
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.icon:active {
    transform: scale(0.95);
    background-color: rgba(255,255,255,0.3);
}

.window {
    transition: all 0.3s ease;
    opacity: 1;
}

.window-header {
    user-select: none;
    cursor: move;
}

/* Ensure buttons are clickable */
.close-btn, .fullscreen-btn {
    z-index: 1000;
    position: relative;
}

.taskbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: white;
    z-index: 1100;
}

/* New clock styling */
.taskbar-clock {
    margin-left: auto;
    margin-right: 10px;
    font-size: 14px;
}
