
##### Arquivo: `style.css.txt`
Este arquivo contém os estilos atualizados, mantidos sem alterações, pois o problema está relacionado à lógica e não ao CSS.

<xaiArtifact artifact_id="4185f7cb-671a-4bc9-9152-f83109f3ef04" artifact_version_id="0e072fea-e2a0-4a26-9adb-5114f13a8dbc" title="style.css.txt" contentType="text/plain">
```css
.svni-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    padding: 20px;
}

.svni-container select {
    width: 23%;
    min-width: 180px;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .svni-container select {
        width: 100%;
        font-size: 18px;
        padding: 12px;
        margin-bottom: 10px;
    }
}

#resultado {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: #333;
}

#resultado img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.info-box {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .info-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.zap-button {
    background: #25d366;
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.zap-button:hover {
    background: #1ebe5d;
}

.export-button {
    background: #007bff;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.export-button:hover {
    background: #0056b3;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    color: #ff4d4d;
    font-weight: bold;
}