html,
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    background-image: url("./images/dot.png");
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

.taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 9999;

    background: linear-gradient(to bottom,
            rgba(176, 213, 240, 0.45) 0%,
            rgba(103, 169, 219, 0.35) 45%,
            rgba(57, 131, 191, 0.45) 55%,
            rgba(110, 180, 232, 0.50) 100%);
    backdrop-filter: blur(8px) saturate(130%);
    -webkit-backdrop-filter: blur(8px) saturate(130%);

    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3),
        0 -2px 10px rgba(0, 0, 0, 0.15);
}

.taskbar-apps {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 4px;
    border: none !important;
}

.system-tray {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.clock {
    padding: 0 11px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-left: none !important;
    color: #ffffff;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(0, 0, 0, 0.9);
}

.clock .time {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.clock .date {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.95;
    line-height: 1.1;
}

.show-desktop {
    width: 15px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15));
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.show-desktop:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}