.dw-export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.dw-export-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border: 1px solid rgba(13, 40, 64, 0.12);
    border-radius: 14px;
    background: linear-gradient(165deg, #fff 0%, #f4f8fc 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Cairo', sans-serif;
}

.dw-export-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 40, 64, 0.1);
}

.dw-export-card i {
    font-size: 1.5rem;
    color: #155e94;
}

.dw-export-card strong {
    font-size: 0.88rem;
    color: #0d2840;
}

.dw-export-card small {
    font-size: 0.75rem;
    opacity: 0.7;
}

.eb-bridge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.eb-bridge-card {
    border: 1px solid rgba(13, 40, 64, 0.1);
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.eb-bridge-card header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #0d2840;
}

.eb-bridge-card header i {
    color: #155e94;
}

.eb-bridge-card p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 10px;
    line-height: 1.5;
}

.dw-governance-section { margin-top: 20px; padding-top: 16px; border-top: 1px dashed rgba(13,40,64,0.15); }
.dw-governance-section h3 { font-size: 1rem; color: #0d2840; margin-bottom: 8px; }

.dw-export-grid--batches {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.dw-batch-card {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(21, 94, 148, 0.14);
    background: linear-gradient(180deg, #fff, #f6fafd);
}
.dw-batch-card--sensitive {
    border-color: rgba(201, 162, 39, 0.35);
    background: linear-gradient(180deg, #fffef8, #f8fbfe);
}
.dw-batch-card h4 {
    margin: 0 0 10px;
    font-size: 0.92rem;
    color: #0d2840;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dw-batch-card .dw-export-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
}
.dw-full-export-details {
    margin-top: 14px;
    font-size: 0.88rem;
}
.dw-full-export-details summary {
    cursor: pointer;
    color: #155e94;
    font-weight: 700;
    padding: 8px 0;
}

.eb-bridge-card--live {
    border-color: rgba(39, 174, 96, 0.35);
    background: linear-gradient(165deg, #fff 0%, #f0faf4 100%);
}

.erp-stat--warn strong { color: #e67e22; }
