#start-menu {
    position: absolute;
    bottom: var(--taskbar-height);
    left: 0;
    width: 400px;
    height: 500px;
    display: flex;
    z-index: 1001;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.start-menu-left {
    flex: 1.5;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background: white;
}

.search-box {
    position: relative;
    margin-top: auto;
    padding: 5px;
}

.search-box input {
    width: 100%;
    padding: 8px 30px 8px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    outline: none;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.start-menu-right {
    flex: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    padding: 15px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.user-img {
    width: 48px;
    height: 48px;
    background: #ddd;
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.system-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.system-links a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    padding: 5px 8px;
    border-radius: 3px;
}

.system-links a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.system-links hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 5px 0;
}

.shutdown-area {
    margin-top: auto;
    display: flex;
    gap: 2px;
}

#shutdown-btn {
    flex: 1;
    padding: 8px;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
    border: 1px solid #3a7bd5;
    color: white;
    border-radius: 3px 0 0 3px;
    cursor: pointer;
    font-weight: bold;
}

#shutdown-options {
    padding: 8px;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
    border: 1px solid #3a7bd5;
    color: white;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}
