/* Taskbar and Start Menu */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(to bottom, #245edb 0%, #1941a5 100%);
    border-top: 0.06rem solid #1659e7;
    display: flex;
    align-items: center;
    box-shadow: 0 -0.06rem 0.2rem rgba(0,0,0,0.2);
    z-index: 1000;
    gap: 0.25rem;
}

.start-button {
    background: url('../assets/windows-xp-start-button-png-3.jpg') no-repeat center center;
    background-size: 100% 100%;
    border: none;
    cursor: pointer;
    width: 6.25rem;
    height: 2.35rem;
    border-radius: 0 0.6rem 0.6rem 0;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}
@keyframes xp-blink {
    0% {
        filter: brightness(1);
        box-shadow: none;
    }
    50% {
        filter: brightness(1.15);
        box-shadow: 0 0 6px rgba(255,255,255,0.6);
    }
    100% {
        filter: brightness(1);
        box-shadow: none;
    }
}

/* Inactive (blinking) start button */
.start-button.inactive {
    animation: xp-blink 1.8s infinite ease-in-out;
}

.start-button:hover {
    filter: brightness(1.1);
}

.start-button:active {
    filter: brightness(0.9);
    transform: translateY(0.06rem);
}

.taskbar-title {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0 0.6rem;
}

.system-tray {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0 0.6rem;
    background: #0c6cb8;
    height: 1.75rem;
    border: 0.06rem solid;
    border-color: #084a87 #0d7fcd #0d7fcd #084a87;
    margin-left: auto;
    border-radius: 0.15rem;
}

.clock {
    color: white;
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Start Menu */
.start-menu {
    position: fixed;
    bottom: 2.5rem;
    left: 0.25rem;
    width: 22rem;
    background: #d4d0c8;
    border: 0.125rem solid;
    border-color: #ffffff #000000 #000000 #ffffff;
    display: none;
    box-shadow: 0.2rem 0.2rem 0.5rem rgba(0,0,0,0.3);
    z-index: 1001;
}

.start-menu.active {
    display: block;
}

.start-menu-header {
    background: linear-gradient(to bottom, #245edb 0%, #1941a5 100%);
    color: white;
    padding: 1.5rem 1rem;
}

.start-menu-header-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.start-menu-header-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.start-menu-separator {
    height: 0.125rem;
    background: linear-gradient(to right, #808080 0%, #ffffff 50%, #808080 100%);
}

.start-menu-items {

    padding: 0.3rem 0;
}

.start-menu-item {
    padding: 0.6rem 1rem 0.6rem 3rem;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.start-menu-item:hover {
    background: #0a58ca;
    color: white;
}

.menu-icon {
    position: absolute;
    left: 1.25rem;
    font-size: 1.25rem;
}

.logout-item {
    background: #ddd;
    font-weight: bold;
}

.logout-item:hover {
    background: #c44;
    color: white;
}
.menu-icon-img {
    width: 1.2rem;
    height: auto;
}