body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.thank-you-container {
    text-align: center;
    background-color: white;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    width: 80%; /* ensure it does not take up full width */
}

.uninstall-container {
    text-align: center;
    margin-top: 20px;
    width: 80%; /* match the width of the thank-you container */
}

.uninstall-button {
    color: #928b8b;

}

.uninstall-button:hover {
    text-decoration: underline;
}

.uninstall-text-container {
    text-align: left;
    background-color: white;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    width: 80%;
}

