body {
    font-family: Arial, sans-serif;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f2f2f2;
}

.icon {
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 25px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 160px;
}

.app-title {
    font-size: 20px;
    font-weight: bold;
    top: 300px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}

.info-message {
    font-size: 16px;
    color: gray;
    float: none;
    width: 80%;
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 330px;
}


.button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}


.link {
    display: block;
    margin-top: 15px;
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
}

.notification {
    color: green;
    margin-top: 10px;
    font-size: 14px;
}

.static-alert {
    background-color: #ffeb3b;
    color: #333;
    padding: 15px;
    border-left: 5px solid #f39c12;
    margin: 20px 0;
    border-radius: 5px;
}


/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.onboarding-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
    justify-content: flex-start;
}

/* Step Sections */
.step-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-label {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    font-size: 16px;
}

.step-heading {
    font-size: 28px;
    font-weight: bold;
    margin-top: 4px;
}

.step-description {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

/* Button Styles */
.download-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.download-button:hover {
    background-color: #333;
}

/* Tap Box */
.tap-box {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.tap-link {
    font-size: 22px;
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

/* Copy Section */
.copy-label {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin: 16px 0 8px;
    color: #666;
}

.code-box {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    word-break: break-all;
}

.copy-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 4px;
}

.copy-button:hover {
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .step-heading {
        font-size: 24px;
    }

    .step-description {
        font-size: 16px;
    }

    .code-text {
        font-size: 16px;
    }
}

.button-disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.tapLink {
    background-color: #ccc;
    color: #666;
    cursor: link-disabled;
}