* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f5f2;
    min-height: 100vh;
    padding: 20px;
    color: #222525;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    background: #fffffe;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color: #232323;
    margin-bottom: 10px;
}

.subtitle {
    color: #222525;
    font-size: 1.1em;
}

.upload-row {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    margin-bottom: 30px;
}

.upload-area {
    position: relative;
    border: 3px dashed #078080;
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    background: #fffffe;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    background: #f8f5f2;
    border-color: #078080;
    transform: translateY(-2px);
}

.upload-area.dragover {
    background: #f8f5f2;
    border-color: #078080;
    transform: scale(1.02);
}

.upload-area-excel {
    border-color: #b0b0b0;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area-excel:hover {
    border-color: #078080;
}

.upload-area-excel.excel-active {
    border-color: #078080;
    border-style: solid;
    background: #f0fafa;
}

.upload-label {
    pointer-events: none;
}

.upload-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.upload-area-excel .upload-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
}

.upload-area-excel h2 {
    font-size: 1.15em;
}

.upload-area h2 {
    color: #232323;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.upload-area p {
    color: #222525;
    font-size: 1.1em;
}

.excel-optional-label {
    font-size: 0.92em !important;
    color: #888 !important;
}

.excel-status {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    min-height: 1.4em;
}

.excel-status:empty {
    display: none;
}

.excel-status.excel-loaded {
    display: block;
    color: #078080;
    font-weight: 600;
}

.format-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 14px 24px;
    background: #fffffe;
    border: 2px solid #078080;
    border-radius: 12px;
    font-size: 1em;
    color: #232323;
}

.format-label {
    font-weight: 700;
    color: #078080;
}

.format-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.2s;
}

.format-option:hover {
    background: #f8f5f2;
}

.format-selector input[type="radio"] {
    accent-color: #078080;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.file-list {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f5f2;
    border-radius: 10px;
}

.file-list h3 {
    color: #232323;
    margin-bottom: 15px;
}

.file-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.file-item {
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    min-width: 0;
}

.file-name {
    flex: 1;
    color: #333;
    font-weight: 500;
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.file-size {
    color: #666;
    font-size: 0.82em;
    margin-left: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: #078080;
    color: #fffffe;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 128, 128, 0.35);
}

.btn-secondary {
    background: #f45d48;
    color: #fffffe;
}

.btn-secondary:hover {
    background: #e65340;
}

.btn-ghost {
    background: transparent;
    color: #555;
    border: 1.5px solid #ccc;
}

.btn-ghost:hover {
    background: #f0f0f0;
    border-color: #aaa;
    color: #333;
}

.btn-outline {
    background: transparent;
    color: #078080;
    border: 1.5px solid #078080;
}

.btn-outline:hover {
    background: #078080;
    color: #fff;
}

.btn-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.results {
    margin-top: 30px;
    padding: 20px;
    background: #f8f5f2;
    border-radius: 10px;
}

.results h3 {
    color: #232323;
    margin-bottom: 20px;
}

.result-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
    transition: border-left-color 0.2s;
}

/* Card left border — Excel match status at a glance */
.result-item.excel-found    { border-left-color: #2e7d32; }
.result-item.excel-partial  { border-left-color: #e6a000; }
.result-item.excel-warning  { border-left-color: #e65c00; }
.result-item.excel-notfound { border-left-color: #c62828; }

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    cursor: pointer;
    user-select: none;
}

.result-header:hover { background: rgba(0,0,0,0.015); border-radius: 6px; }

.result-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.collapse-toggle {
    background: none;
    border: none;
    font-size: 1rem;
    color: #aaa;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    transition: color 0.15s;
}
.result-header:hover .collapse-toggle { color: #555; }

/* Collapsed card: hide body, remove bottom border on header */
.result-item.collapsed .result-body { display: none; }
.result-item.collapsed .result-header { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.result-item.collapsed .excel-status-banner { display: none; }

.result-original {
    color: #222525;
    font-size: 0.9em;
    font-style: italic;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 12px;
}

.result-suggested {
    font-size: 1.05em;
    font-weight: 600;
    font-family: monospace;
    color: #1a1a1a;
    margin: 8px 0;
    padding: 12px 14px;
    background: #f0fafa;
    border: 1.5px solid rgba(7, 128, 128, 0.3);
    border-radius: 8px;
    word-break: break-all;
    letter-spacing: 0.01em;
    outline: none;
    cursor: text;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.result-suggested:focus {
    border-color: #078080;
    box-shadow: 0 0 0 3px rgba(7, 128, 128, 0.12);
}

.preview-badge-edited {
    background: rgba(180, 100, 0, 0.1);
    border-color: rgba(180, 100, 0, 0.3);
    color: #b46400;
}

.btn-regenerate {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #078080;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
    opacity: 0.8;
    transition: opacity 0.15s, background 0.15s;
}

.btn-regenerate:hover {
    opacity: 1;
    background: rgba(7, 128, 128, 0.08);
}

.result-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.metadata-badge {
    padding: 5px 12px;
    background: #078080;
    border-radius: 20px;
    font-size: 0.85em;
    color: #fffffe;
}

.result-error {
    color: #e74c3c;
    padding: 10px;
    background: #feefe8;
    border-radius: 5px;
    margin-top: 10px;
}

.extraction-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 9px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.extraction-pill.ok   { background: #eaf4ff; color: #2060aa; border: 1px solid #b8d4f0; }
.extraction-pill.warn { background: #fff8e1; color: #a06000; border: 1px solid #ffe082; }

/* Excel match card backgrounds */
.result-item.excel-found    { background: #f2fff5; }
.result-item.excel-notfound { background: #fff5f5; }
.result-item.excel-partial  { background: #fffdf2; }
.result-item.excel-warning  { background: #fff8f0; }

/* Excel status banner */
.excel-status-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 14px;
}
.excel-status-banner.found {
    background: #d4edda;
    color: #155724;
    border: 1px solid #b8dfc5;
}
.excel-status-banner.partial {
    background: #fff8dc;
    color: #856404;
    border: 1px solid #f0de8a;
}
.excel-status-banner.warning {
    background: #fde8d0;
    color: #7a3a00;
    border: 1px solid #f5c89a;
}
.excel-status-banner.notfound {
    background: #fde8e8;
    color: #7a1c1c;
    border: 1px solid #f5b8b8;
}
.excel-status-banner .banner-icon { font-size: 1rem; }

.error-icon {
    color: #e74c3c;
    font-size: 1.5em;
}

.result-notes {
    margin: 10px 0 15px 0;
    padding: 12px;
    background: #feefe8;
    border: 1px solid rgba(244, 93, 72, 0.35);
    border-radius: 10px;
    color: #222525;
}

.note-item {
    font-size: 0.95em;
    margin: 4px 0;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
}

.builder-header {
    display: grid;
    grid-template-columns: 220px 220px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: #fffffe;
    border-radius: 10px;
    border: 1px solid rgba(7, 128, 128, 0.2);
    color: #232323;
    font-weight: 800;
}

.builder-header .muted {
    font-weight: 700;
    opacity: 0.85;
}

.field-row {
    display: grid;
    grid-template-columns: 220px 220px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f8f5f2;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: border-left-color 0.15s, background 0.15s;
    cursor: default;
}

.field-row.field-hovered {
    border-left-color: var(--field-color, #ccc);
    background: color-mix(in srgb, var(--field-color, #ccc) 8%, #f8f5f2);
}

.field-color-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--field-color, #ccc);
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.15s, transform 0.15s;
}

.field-row.field-hovered .field-color-dot {
    opacity: 1;
    transform: scale(1.25);
}

.field-label {
    color: #333;
    font-weight: 600;
}

.field-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.field-select,
.field-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dfe3ff;
    border-radius: 10px;
    font-size: 0.95em;
    outline: none;
    background: white;
}

.field-input:focus,
.field-select:focus {
    border-color: #078080;
    box-shadow: 0 0 0 3px rgba(7, 128, 128, 0.15);
}

.field-constant .field-controls {
    grid-template-columns: 1fr;
}

.constant-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: #078080;
    color: #fffffe;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.preview-block {
    margin-top: 16px;
    padding: 12px;
    background: #fffffe;
    border-radius: 12px;
    border: 1px solid rgba(7, 128, 128, 0.2);
}

.preview-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 8px;
}

.preview-label-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: #078080;
    background: rgba(7, 128, 128, 0.1);
    border: 1px solid rgba(7, 128, 128, 0.2);
    border-radius: 10px;
    padding: 1px 7px;
    letter-spacing: 0.02em;
}

.preview-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

/* ── Excel Column Config Panel ── */
.excel-config-panel {
    background: #fffffe;
    border: 1.5px solid rgba(7, 128, 128, 0.25);
    border-radius: 12px;
    margin: 0.8rem 0 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.excel-config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.1rem;
    background: #f0fafa;
    border-bottom: 1.5px solid rgba(7, 128, 128, 0.15);
}

.excel-config-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #078080;
    letter-spacing: 0.01em;
}

.excel-config-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    color: #078080;
    opacity: 0.7;
    padding: 2px 4px;
    border-radius: 4px;
    transition: opacity 0.15s;
}
.excel-config-toggle:hover { opacity: 1; }

.excel-config-body {
    padding: 1rem 1.1rem 0.9rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 1.2rem;
    align-items: end;
}

/* Let the column-selects container dissolve into the parent grid */
#excelColConfig {
    display: contents;
}

.excel-config-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.excel-config-label {
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.excel-config-select {
    font-family: inherit;
    font-size: 0.88rem;
    padding: 0.4rem 0.6rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    background: #fff;
    color: #222525;
    transition: border-color 0.15s;
    cursor: pointer;
}
.excel-config-select:focus {
    outline: none;
    border-color: #078080;
    box-shadow: 0 0 0 3px rgba(7, 128, 128, 0.12);
}

.excel-config-hint {
    margin: 0;
    font-size: 0.82rem;
    color: #a05000;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    grid-column: 1 / -1;
}

.excel-config-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    grid-column: 1 / -1;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(7, 128, 128, 0.1);
    margin-top: 0.25rem;
}

.excel-config-status {
    font-size: 0.82rem;
    color: #078080;
    font-weight: 500;
}

.excel-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 4px;
    padding: 8px 10px;
    background: #fffbf0;
    border: 1px solid #f0e0a0;
    border-radius: 8px;
}

.excel-suggestion-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.excel-suggestion-label {
    font-size: 0.72em;
    font-weight: 600;
    color: #a07820;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.excel-name-value {
    font-size: 0.85em;
    font-family: monospace;
    color: #333;
    word-break: break-all;
}

.download-all-wrap {
    margin-top: 20px;
    padding: 16px;
    background: #f8f5f2;
    border-radius: 12px;
    text-align: center;
}

.btn-small {
    padding: 10px 14px;
    font-size: 0.95em;
    border-radius: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.pill-required {
    background: #f45d48;
    color: #232323;
}

.pill-optional {
    background: rgba(35, 35, 35, 0.08);
    color: #232323;
}

.order-block {
    margin-top: 14px;
    padding: 12px;
    background: #fffffe;
    border-radius: 12px;
    border: 1px solid rgba(7, 128, 128, 0.2);
}

.order-label {
    font-weight: 800;
    color: #232323;
    margin-bottom: 6px;
}

.order-help {
    color: #222525;
    opacity: 0.85;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.order-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: #f8f5f2;
    border-radius: 10px;
    border: 1px solid rgba(35, 35, 35, 0.08);
}

.order-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.order-handle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fffffe;
    border: 1px solid rgba(35, 35, 35, 0.12);
    cursor: grab;
    user-select: none;
}

.order-item[draggable="true"] {
    cursor: grab;
}

.order-item.dragging {
    opacity: 0.6;
}

.order-item.drop-target {
    outline: 3px solid rgba(7, 128, 128, 0.25);
}

.order-text {
    color: #232323;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Split layout: fields left, preview right */
.result-content-split {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 20px;
    align-items: start;
}

.result-fields-panel {
    min-width: 0;
}

.result-preview-panel {
    position: sticky;
    top: 20px;
    border: 1px solid rgba(7, 128, 128, 0.2);
    border-radius: 12px;
    background: #f8f5f2;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 85vh;
}

.preview-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: #fffffe;
    border-radius: 8px;
    border: 1px solid rgba(7, 128, 128, 0.15);
    flex-shrink: 0;
}

.preview-tool-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(35, 35, 35, 0.15);
    border-radius: 6px;
    background: #f8f5f2;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    color: #232323;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.preview-tool-btn:hover {
    background: #e8e4e0;
}

.preview-zoom-label {
    font-size: 0.85em;
    font-weight: 700;
    color: #232323;
    min-width: 42px;
    text-align: center;
}

.preview-page-info {
    margin-left: auto;
    font-size: 0.85em;
    font-weight: 600;
    color: #222525;
    white-space: nowrap;
}

.preview-scroll-container {
    overflow: auto;
    flex: 1;
    min-height: 200px;
    border-radius: 8px;
    background: #e8e4e0;
}

.preview-pages-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px;
}

.preview-canvas-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fffffe;
    line-height: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.preview-canvas-wrap canvas {
    width: 100%;
    height: auto;
    display: block;
}

.preview-page-label {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(35, 35, 35, 0.7);
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 1;
    line-height: 1.4;
}

.preview-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #222525;
    font-size: 0.95em;
    line-height: 1.4;
}

.preview-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82em;
    font-weight: 600;
    color: #232323;
    padding: 3px 8px;
    border-radius: 6px;
    background: #fffffe;
    border: 1px solid rgba(35, 35, 35, 0.08);
    cursor: pointer;
    transition: outline 0.15s;
}

.legend-item:hover {
    outline: 2px solid currentColor;
}

.legend-swatch {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .result-content-split {
        grid-template-columns: 1fr;
    }

    .result-preview-panel {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .upload-row {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    .upload-area {
        padding: 40px 15px;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .builder-header {
        grid-template-columns: 1fr;
    }

    .excel-config-body {
        grid-template-columns: 1fr 1fr;
    }

    .file-list ul {
        grid-template-columns: 1fr;
    }
}

/* ── Match Filter Toolbar (sticky) ── */
.match-filter-widget {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1.5px solid rgba(7, 128, 128, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 10px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #078080;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.widget-count {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.widget-divider {
    flex: 1;
}

.widget-btn {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: #078080;
    color: #fff;
    white-space: nowrap;
    transition: background 0.15s;
}

.widget-btn:hover { background: #056060; }

.widget-btn.widget-btn-outline {
    background: transparent;
    color: #078080;
    border: 1.5px solid rgba(7, 128, 128, 0.5);
}

.widget-btn.widget-btn-outline:hover {
    background: #078080;
    color: #fff;
}
