Initial commit

This commit is contained in:
2025-12-05 11:27:16 -03:00
commit 804bacfbe3
87 changed files with 7260 additions and 0 deletions

112
frontend/css/admin.css Normal file
View File

@@ -0,0 +1,112 @@
.admin-container {
max-width: 1400px;
margin: 0 auto;
}
.tabs {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
border-bottom: 2px solid #ecf0f1;
}
.tab {
padding: 1rem 2rem;
cursor: pointer;
border: none;
background: none;
font-size: 1rem;
color: #7f8c8d;
border-bottom: 3px solid transparent;
transition: all 0.2s;
}
.tab.active {
color: #3498db;
border-bottom-color: #3498db;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.albaran-card {
background: white;
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.albaran-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid #ecf0f1;
}
.albaran-image {
max-width: 100%;
max-height: 400px;
border-radius: 4px;
margin: 1rem 0;
}
.ocr-data {
background: #f8f9fa;
padding: 1rem;
border-radius: 4px;
margin: 1rem 0;
font-family: monospace;
font-size: 0.9rem;
white-space: pre-wrap;
max-height: 300px;
overflow-y: auto;
}
.referencias-table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
.referencias-table th,
.referencias-table td {
padding: 0.75rem;
text-align: left;
border-bottom: 1px solid #ecf0f1;
}
.referencias-table th {
background: #f8f9fa;
font-weight: bold;
}
.badge {
padding: 0.25rem 0.5rem;
border-radius: 12px;
font-size: 0.75rem;
font-weight: bold;
}
.badge.pendiente {
background: #fff3cd;
color: #856404;
}
.badge.procesado {
background: #d4edda;
color: #155724;
}
.badge.clasificacion {
background: #f8d7da;
color: #721c24;
}