* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: white;
    color: black;
    min-height: 100vh;
    direction: rtl;
    text-align: center;
}

.content {
    padding: 50px 20px;
}

.download-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.download-bar.show {
    opacity: 1;
    visibility: visible;
}

.download-button {
    height: 100%;
    display: flex;
    align-items: center;
}

.download-button img {
    height: 50%;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.download-button img:hover {
    transform: scale(1.1);
}

.download-button.left {
    justify-content: flex-start;
}

.download-button.right {
    justify-content: flex-end;
}

