.diy-sync-airtable__header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.diy-sync-airtable__status {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.status-ready {
    background-color: #28a745;
}

.status-dot.status-running {
    background-color: #ffc107;
    animation: pulse 1.5s infinite;
}

.status-dot.status-success {
    background-color: #28a745;
}

.status-dot.status-error {
    background-color: #dc3545;
}

.status-text {
    font-weight: 500;
    color: #333;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* .diy-sync-airtable__actions .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.diy-sync-airtable__actions .btn:hover:not(:disabled) {
    background: #005a87;
} */

/* .diy-sync-airtable__actions .btn:disabled {
    background: #ccc;
    cursor: not-allowed;
} */

.alldone {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 10px;
}

.alldone:not(.hidden) {
    opacity: 1;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 10px;
}

.progressbar {
    width: 80%;
    left: 0;
}

.progress-text {
    font-size: 14px;
    color: #666;
    text-align: center;
}
