.pwa-instructions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    background-color: #333333; /* Fondo gris oscuro */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: center;
    color: #ffffff;
}
.pwa-instructions-container h2 {
    color: #ffffff;
}
.instruction-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    border-left: 5px solid #007bff;
}
.instruction-step .number {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    margin-right: 15px;
}
.instruction-step p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}
.pwa-content { /* Usado en lugar de selectores de ID individuales */
    margin-top: 20px;
}
.device-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}
#install-app-button {
    background-color: #8e44ad;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block; 
    margin: 20px auto 0;
}
#install-app-button:hover {
    background-color: #6c3483;
}