.file-list-container {
    margin-top: 15px;
    border-top: 1px solid #dee2e6;
    padding-top: 15px;
}

.file-list-header {
    color: #6c757d;
    font-size: 0.875rem;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 10px;
}

.file-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 6px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.file-list-item:hover {
    background-color: #e9ecef;
}

.file-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
}

.file-list-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-size: 14px;
}

.file-size {
    margin-left: 12px;
    color: #6c757d;
    font-size: 12px;
    white-space: nowrap;
}

.btn-close-sm {
    font-size: 0.8rem;
    padding: 0.25rem;
    margin-left: 12px;
}

.btn-close:focus {
    box-shadow: none;
} 