.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1c1f26;
    color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #333;
    flex-wrap: wrap;
}

.bottom-bar .left-section,
.bottom-bar .right-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bottom-bar .icon {
    font-size: 16px;
    color: #aaa;
}

.bottom-bar a,
.bottom-bar button {
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 5px 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.bottom-bar a:hover,
.bottom-bar button:hover {
    color: #00d0ff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .bottom-bar {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .bottom-bar .right-section {
        justify-content: flex-end;
        width: 100%;
        margin-top: 5px;
    }
}
