76 lines
944 B
CSS
76 lines
944 B
CSS
.container {
|
|
padding: 24px;
|
|
}
|
|
|
|
.step-container {
|
|
padding: 16px 0;
|
|
}
|
|
|
|
h3 {
|
|
margin-top: 16px;
|
|
margin-bottom: 8px;
|
|
color: #333;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.file-upload-zone {
|
|
border: 2px dashed #ccc;
|
|
padding: 32px;
|
|
text-align: center;
|
|
border-radius: 8px;
|
|
margin-bottom: 16px;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.mapping-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
align-items: center;
|
|
}
|
|
|
|
.or-separator {
|
|
font-weight: bold;
|
|
color: #888;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.actions {
|
|
margin-top: 24px;
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
|
|
.summary-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
padding: 16px;
|
|
background-color: #f5f5f5;
|
|
border-radius: 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.summary-item {
|
|
font-weight: bold;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
.invalid-row td {
|
|
color: #999;
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.error-text {
|
|
color: #f44336;
|
|
font-weight: 500;
|
|
}
|