.footer {
    position: relative; 
    margin-top: auto; 
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 15px;
    flex-shrink: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.footer-left {
    text-align: left;
    flex: 1; 
    min-width: 200px; 
}

.footer-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; 
    justify-content: flex-end;
    min-width: 100px; 
}

.footer-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s;
    filter: brightness(0) invert(1); 
}

.footer-icon:hover {
    transform: scale(1.1);
}
