/* ========== LOAD BUTTON STYLES ==========*/
/* Кнопка скачать (справа внизу хранилища) */

/* Кнопка скачать */
.storage__download-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--orange-icon);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.storage__download-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

.storage__download-btn svg {
    width: 24px;
    height: 24px;
}
