.fs-app-container {
    text-align: center;
    padding: 25px;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.fs-app-container h2 {
    color: #006eff;
}

.fs-text-app {
    font-size: 16px;
    font-weight: 300;
}

.install-link {
    display: inline-block;
    padding: 22px;
    background-color: #1a77f2;
    color: #fff;
    font-weight: 550;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    user-select: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.install-link:hover {
    background-color: #0367eb;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.install-link:active {
    background-color: #025cd4;
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}