maralvic's picture
Avalie se é possível preparar um aplicativo web com base na planilha a anexar, onde somente serão imputados os valores que não contém fórmulas, e os demais, devem ser calculados, gerados relatórios etc. Os valores a serem imputados que constam em guias do tipo "lista", devem ser imputados em um campo txt, um do lado do outro e um abaixo do outro, ou mesmo em CSV separado por |
617a965 verified
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Animation for processing button */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.processing {
animation: pulse 1.5s infinite;
}
/* Table styling */
.data-table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
.data-table th, .data-table td {
padding: 0.75rem;
text-align: left;
border-bottom: 1px solid #e2e8f0;
}
.data-table th {
background-color: #f7fafc;
color: #4a5568;
font-weight: 600;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.05em;
}
.data-table tr:hover td {
background-color: #f8fafc;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.data-table {
display: block;
overflow-x: auto;
}
}