
/* Taskbar Styles */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100vw;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    z-index: 5000000000000000000000000000000;
    padding: 0 10px;
    padding-right: 20px;
}

.taskbar::after {
    content: "";
    height: 80%;
    width: 0.005rem;
    background: rgb(26, 25, 25);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 118px;
    box-shadow: 0.005rem 0 1px black;
}

.extra-menu {
    filter: blur(0px);
    height: 35px;
    width: 35px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.info {
    height: 100%;
    gap: 10px;
    margin-right: 20px;
}

.date-time {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
    width: 100px;
}

.date-time span {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}




/* Social Links Styles */
.social-links {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.social-icons {
    height: 25px;
    width: 25px;
    border-radius: 5px;
}

/* Buy Me a Coffee Button Styles */
.coffee-btn {
    transition: transform 0.3s ease;
}

.coffee-btn:hover {
    transform: translateY(-3px);
}

.coffee-link {
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.coffee-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}