.dock-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: fixed;
    width: 80%;
    max-width: 1250px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1000;
    padding: 20px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .dock-header {
        width: 100%;
        max-width: 100%;
        left: 0;
        border-radius: 0;
        transform: translateX(0%);
    }
}

.dock-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dock-header .logo {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.dock-header .nav-links {
    display: flex;
    list-style: none;
}

.dock-header .nav-links li {
    margin-left: 30px;
}

.dock-header .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.dock-header .nav-links a:hover {
    color: var(--primary-color);
}
