.dock {
    background: var(--dock-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: fit-content;
    margin: 0 auto;
    padding: 0 12px;
}

.dock-container {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0;
}

.dock-item {
    position: relative;
    transition: all 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.icon-wrapper {
    background: none;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0;
    overflow: hidden;
}

.dock-item img {
    width: 44px;
    height: 44px;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 10px;
    object-fit: cover;
}

.dock-item:hover .icon-wrapper {
    transform: translateY(-10px) scale(1.1);
    margin: 0 8px;
}

.dock-item .icon-wrapper.active-app {
    transform: translateY(-10px);
    margin: 0 8px;
}

.dock-item .icon-wrapper.active-app img {
    width: 50px;
    height: 50px;
}

.dock-separator {
    width: 1px;
    height: 30px;
    background: var(--dock-separator-color);
    margin: 0 8px;
    display: none;
}

.dock-dot {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
    display: none;
}

.dock-item.active .dock-dot {
    display: block;
}

#minimized-windows {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.minimized-window-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 6px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: var(--icon-bg);
}

.minimized-window-icon:hover {
    transform: scale(1.1);
}

.minimized-window-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dock icon bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-15px) scale(1.1);
    }
    50% {
        transform: translateY(-7px) scale(1.05);
    }
    70% {
        transform: translateY(-4px) scale(1.03);
    }
}

.dock-indicator {
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    display: none;
}

.dock-item.running .dock-indicator {
    display: block;
}

.dock-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: nowrap;
    z-index: 9999;
}

.dock-item:hover .dock-tooltip {
    opacity: 1;
} 