@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

.download-company-profile {
    box-sizing: border-box;
    margin: 0;
    padding: 10px 15px;
    position: fixed;            /* Stays in place when scrolling */
    bottom: 100px;               /* Distance from bottom */
    right: 20px;                /* Distance from right */
    color: white;
    background-color: rgba(11, 64, 8, 0.7);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 101;
    display: none;
    visibility: hidden;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-family: "Inter";
}

/* Show when active */
.download-company-profile.show {
    display: flex;
    visibility: visible;
}

@media (max-width: 1128px) {
    .download-company-profile.show {
        display: none;
        visibility: hidden;
    }
}