/*
 * This file is part of the GiDiNet website (www.gidinet.com).
 * Public availability does not imply an open-source license.
 * All rights reserved. Copying, modification or reuse is prohibited
 * without prior written permission.
 */

.window-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2e3e4b;
    display: flex;
    gap: 8px;
    z-index: 500;
    border-top: 1px solid #1d2b35;
    padding: 0px;
}

.dock-item {
    background: #44576a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85em;
    user-select: none;
    margin: 5px 5px 5px 0px;
    text-transform: uppercase;
}

.dock-item:hover {
    background-color: #5e80bd;
}