/* File Upload Styles */
.CDSFeed-upload-container {
    margin-top: 0.5rem;
}

.CDSFeed-upload-area {
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.CDSFeed-upload-area:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.CDSFeed-upload-area.drag-over {
    border-color: #3b82f6;
    background: #dbeafe;
    transform: scale(1.02);
}

.CDSFeed-upload-icon {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.CDSFeed-upload-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.CDSFeed-upload-hint {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* File List Styles */
.CDSFeed-file-list {
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.CDSFeed-file-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.CDSFeed-file-item:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.CDSFeed-file-preview {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    margin-right: 1rem;
    object-fit: cover;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #6b7280;
    overflow: hidden;
}

.CDSFeed-file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.CDSFeed-file-info {
    flex: 1;
}

.CDSFeed-file-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.CDSFeed-file-meta {
    font-size: 0.75rem;
    color: #6b7280;
}

.CDSFeed-file-remove {
    padding: 0.375rem 0.75rem;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.CDSFeed-file-remove:hover {
    background: #fecaca;
}

/* Progress Bar */
.CDSFeed-upload-progress {
    margin-top: 0.5rem;
    display: none;
}

.CDSFeed-progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.CDSFeed-progress-fill {
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
    width: 0%;
}

.CDSFeed-progress-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    text-align: center;
}
.CDSFeed-upload-container {
    margin-bottom: 20px;
}