

body {
    font-family: Arial, sans-serif;
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
}

.instructions{
    padding-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#installButton{
    padding: 10px;
    background-color: #474747;
    font-weight:bolder;
    color: rgba(208, 206, 206, 0.675);
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
.input-group {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.input-div{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.att{
    width: 100px;
}
input {
    margin: 5px 0;
    padding: 5px;
    width: 200px;
}
.submit {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

#result {
    margin-top: 20px;
    font-weight: bold;
}
.tooltip {
    font-size: 0.8em;
    color: #666;
}

footer {   
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-size: 0.8em;
    color: #666;
}