.start-menu {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 380px;
    background: #ECE9D8;
    border: 1px solid #0054E3;
    border-radius: 8px 8px 0 0;
    box-shadow: 2px -2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.start-menu.hidden {
    display: none;
}

.user-info {
    background: linear-gradient(to right, #0054E3, #2787E9);
    padding: 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.menu-items {
    display: flex;
    height: 400px;
}

.menu-left {
    width: 65%;
    padding: 8px 0;
    border-right: 1px solid #ccc;
}

.menu-right {
    width: 35%;
    background: #ECE9D8;
    padding: 8px 0;
}

.menu-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.menu-item:hover {
    background: #316AC5;
    color: white;
}

.menu-item img {
    width: 24px;
    height: 24px;
}

.menu-separator {
    height: 1px;
    background: #ccc;
    margin: 8px 0;
}

.taskbar {
    height: 30px;
    background: linear-gradient(to bottom, #2A5EBC, #246ACB, #1D56AA);
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 2px;
    border-top: 1px solid #6B9CF5;
    z-index: 1000;
}

.start-button {
    position: relative;
    bottom: 6px;
    z-index: 1001;
}

.taskbar-items {
    display: flex;
    flex: 1;
    margin: 0 4px;
    margin-top: -3px;
    gap: 2px;
    align-items: center;
    height: 100%;
}

.system-tray {
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #2A5EBC, #246ACB);
    border-left: 1px solid #1D56AA;
    padding: 0 10px;
    margin-left: auto;
}

.time {
    color: white;
    font-size: 11px;
    font-family: 'Tahoma', sans-serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    min-width: 55px;
    text-align: center;
}

.start-button img {
    transform: translateY(70px);
    cursor: pointer;
}

.taskbar-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    height: 22px;
    min-width: 160px;
    max-width: 200px;
    background: linear-gradient(to bottom, #2A5EBC, #246ACB);
    border: 1px solid #1D56AA;
    border-radius: 2px;
    color: white;
    cursor: pointer;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.taskbar-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}