.undo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.undo-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.undo-icon {
    font-size: 32px;
    font-weight: bold;
}

.undo-text {
    flex: 1;
}

.undo-text strong {
    display: block;
    margin-bottom: 5px;
}

.undo-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9em;
}

.undo-banner .btn {
    background: white;
    color: #667eea;
}

.undo-banner .btn:hover {
    background: #f8f9fa;
}

.btn-icon {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
}

.import-summary {
    padding: 20px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.summary-errors {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.summary-errors ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.summary-errors li {
    margin: 5px 0;
}

.summary-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.backup-manager {
    padding: 20px;
}

.backup-info {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.backup-actions-top {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.no-backups {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.backup-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.backup-table th,
.backup-table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.backup-table thead {
    background: #f8f9fa;
}

.backup-table tbody tr:hover {
    background: #f8f9fa;
}

.backup-type-badge {
    background: #17a2b8;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    text-transform: uppercase;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.9em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-small.primary {
    background: #007bff;
    color: white;
}

.btn-small.primary:hover {
    background: #0056b3;
}