/* Cloud Uploads Admin Styles */
.cloud-uploads-status {
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.cloud-uploads-status.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.cloud-uploads-status.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.s3-test-results {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Progress bar styles */
#sync-progress {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccd0d4;
    background: #f9f9f9;
    border-radius: 4px;
}

.progress-bar {
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: #46b450;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
}

.progress-details {
    margin: 10px 0;
}

.progress-details p {
    margin: 5px 0;
}

/* Media library column */
.column-s3_sync {
    width: 100px;
    text-align: center;
}

.s3-sync-status {
    display: inline-block;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.s3-sync-status.synced {
    background-color: #d4edda;
    color: #155724;
}

.s3-sync-status.not-synced {
    background-color: #f8d7da;
    color: #721c24;
}

.s3-sync-status.pending {
    background-color: #fff3cd;
    color: #856404;
}

/* Sync stats */
.sync-stats {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sync-stats p {
    margin: 5px 0;
}

/* Bulk sync container */
#bulk-sync-container.active {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    margin: 20px 0;
}

/* Button styles */
#start-bulk-sync {
    margin-right: 10px;
}

#pause-sync,
#resume-sync,
#cancel-sync {
    margin-right: 10px;
}