/* taskbar.css */

#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e; /* Dark taskbar background color */
    display: flex;
    justify-content: flex-start;
    padding: 5px 0; /* Padding adjusted */
    z-index: 1000; /* Ensure the taskbar appears above other elements */
}

.taskbar-app {
    padding: 8px 12px; /* Adjusted padding for taskbar icons */
    background-color: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    margin-right: 5px; /* Reduced margin between icons */
    display: flex;
    align-items: center; /* Align icon and text vertically */
}

.taskbar-app img {
    max-width: 100%;
    height: auto;
    margin-right: 5px; /* Margin between icon and text */
}

.taskbar-app.active {
    background-color: rgba(255, 255, 255, 0.1); /* Active icon background color */
}

.taskbar-clock {
    margin-left: auto; /* Push clock to the right */
    color: #ffffff;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.taskbar-clock time {
    font-size: 14px;
}

.taskbar-clock date {
    font-size: 12px;
    margin-left: 5px;
    opacity: 0.8;
}
